Add nixvim

This commit is contained in:
2025-06-21 15:21:31 +02:00
parent 5f57d35470
commit 237bae6b4d
3 changed files with 10 additions and 5 deletions
+1 -5
View File
@@ -11,11 +11,7 @@
imports = [ imports = [
outputs.homeManagerModules outputs.homeManagerModules
# Or modules exported from other flakes (such as nix-colors): inputs.nixvim.homeModules.nixvim
# inputs.nix-colors.homeManagerModules.default
# You can also split up your configuration and import pieces of it here:
# ./nvim.nix
]; ];
nixpkgs = { nixpkgs = {
+1
View File
@@ -2,5 +2,6 @@
imports = [ imports = [
./git.nix ./git.nix
./fish.nix ./fish.nix
./nixvim.nix
]; ];
} }
+8
View File
@@ -0,0 +1,8 @@
{ ... }: {
programs.nixvim = {
enable = true;
viAlias = true;
vimAlias = true;
env = { EDITOR = "nvim"; };
};
}