diff options
Diffstat (limited to 'hosts/editors.nix')
-rw-r--r-- | hosts/editors.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/hosts/editors.nix b/hosts/editors.nix new file mode 100644 index 0000000..fec5580 --- /dev/null +++ b/hosts/editors.nix @@ -0,0 +1,12 @@ +{ + pkgs, + inputs, + ... +}: { + environment.variables.EDITOR = "hx"; + environment.systemPackages = [ + pkgs.neovim + # inputs.helix.packages.${pkgs.system}.helix + pkgs.helix + ]; +} |