last migration from old nix config

This commit is contained in:
2024-11-06 21:10:20 +01:00
parent 942fdc8944
commit 46dcd0753e
14 changed files with 2044 additions and 44 deletions

15
home/programs/neovim.nix Normal file
View File

@@ -0,0 +1,15 @@
{ inputs
, pkgs
, ...
}: {
programs.neovim = {
enable = true;
package = pkgs.neovim;
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
defaultEditor = true;
};
}