19 lines
264 B
Nix
19 lines
264 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.helix = {
|
|
enable = true;
|
|
languages = {
|
|
language = [
|
|
{
|
|
name = "nix";
|
|
auto-format = true;
|
|
formatter.command = "${pkgs.nixfmt}/bin/nixfmt";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|