This commit is contained in:
Arthur Wambst 2025-02-25 14:43:08 +01:00
parent c8b33b39e9
commit 15cc035436

View File

@ -32,10 +32,12 @@
{ {
options.neovim.enable = lib.mkEnableOption "Enable Neovim"; options.neovim.enable = lib.mkEnableOption "Enable Neovim";
config = {
environment.systemPackages = inputs.neovim.nixosModules.neovim; environment.systemPackages = inputs.neovim.nixosModules.neovim;
programs.neovim = { programs.neovim = {
enable = true; enable = true;
}; };
}; };
}; };
};
} }