Add home-manager module

This commit is contained in:
Patrick Neff 2024-01-31 17:23:49 +01:00
parent a06da100c7
commit bbc31d60a5
1 changed files with 13 additions and 10 deletions

View File

@ -38,8 +38,9 @@
overlays.default = neovim-overlay;
homeManagerModules = rec {
default = neovim-ide;
neovim-ide =
{ pkgs, config, lib, ... }: {
neovim-ide = {
import = [
({ pkgs, config, lib, ... }: {
options = {
programs.neovim-ide.enable = lib.mkEnableOption "neovim-ide";
};
@ -48,6 +49,8 @@
packages = with pkgs; [ neovim-ide ];
};
};
})
];
};
};
} //