Move git & neovim into Nix home manager flake

main
Hektor Misplon 2025-10-28 00:18:10 +01:00
parent 292a2883be
commit 01264a395d
1 changed files with 8 additions and 0 deletions

View File

@ -106,6 +106,14 @@
};
};
};
programs.git.enable = true;
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
};
home.packages = import ./packages.nix {
inherit pkgs;
inherit config;