Enable git module, set EDITOR to nvim

This makes it so I stop getting nano as my editor, which fills me with
rage.
This commit is contained in:
Eli Ribble 2025-07-21 18:49:37 +00:00
parent 852fe09471
commit 7c1947378e

View file

@ -7,12 +7,15 @@ with lib;
imports = [ ../modules/home ];
myModules.home = {
fish = {
enable = true;
user = "eliribble";
};
fish.enable = true;
git.enable = true;
user = "eliribble";
};
home.sessionVariables = {
EDITOR = "nvim";
TESTVALUE = "eli";
};
home.stateVersion = "25.05";
};