add nixvim config

This commit is contained in:
MFlossmann 2024-07-02 18:36:44 +02:00
parent 53b8cd76ab
commit fb335d75b3
3 changed files with 646 additions and 21 deletions

View file

@ -5,7 +5,9 @@
inputs,
...
}: {
imports = [];
imports = [
inputs.nixvim.homeManagerModules.nixvim
];
nixpkgs.config = {
allowUnfree = true;
@ -49,6 +51,7 @@
EDITOR = "nvim";
};
programs.neovim.enable = true;
programs.neovim.defaultEditor = true;
# programs.neovim.enable = true;
# programs.neovim.defaultEditor = true;
programs.nixvim.enable = true;
}