nixos/home/programs/helix/default.nix
dim fe6455b4f2
All checks were successful
/ update-readme (push) Successful in 26s
change hyprland to niri
2025-11-30 13:14:41 +07:00

19 lines
264 B
Nix

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