1
Fork 0

Set $EDITOR to nvim manually

Using the hm option programs.neovim.defaultEditor doesn't work for some
reason so I just set the environment variable manually.
This commit is contained in:
caem 2024-05-31 23:40:41 +02:00
parent 02b8deca92
commit ba64484693
Signed by: caem
GPG key ID: 69A830D03203405F

View file

@ -10,6 +10,10 @@
./packages/zsh/zsh.nix ./packages/zsh/zsh.nix
]; ];
environment.variables = {
EDITOR = "nvim";
};
users.users.hu = { users.users.hu = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" ]; extraGroups = [ "wheel" ];