2
2
mirror of https://git.feal.no/felixalb/nixos-config.git synced 2024-12-22 04:07:28 +01:00

home: set editor envvars

This commit is contained in:
Felix Albrigtsen 2024-08-28 19:49:54 +02:00
parent 0a52566295
commit aeb9014815

View File

@ -5,11 +5,18 @@
./zsh.nix
];
home.packages = with pkgs; [
bottom
unstable.ncdu
neofetch
];
home = {
packages = with pkgs; [
bottom
unstable.ncdu
neofetch
];
sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
};
};
programs.nix-index = {
enable = true;