mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
dev: homeManagerModule alias
This commit is contained in:
parent
78103c1759
commit
7b5b7bfcce
1 changed files with 10 additions and 4 deletions
14
flake.nix
14
flake.nix
|
@ -33,6 +33,7 @@
|
|||
inherit (import ./extra.nix inputs) neovimConfiguration;
|
||||
};
|
||||
|
||||
/*
|
||||
nixosModules.default = {
|
||||
home-manager.sharedModules = [
|
||||
./lib/module
|
||||
|
@ -42,11 +43,16 @@
|
|||
inputs.self.overlays.default
|
||||
];
|
||||
};
|
||||
*/
|
||||
|
||||
homeManagerModules.default = {
|
||||
imports = [
|
||||
(import ./lib/module self.packages inputs)
|
||||
];
|
||||
homeManagerModules = {
|
||||
neovim-flake = {
|
||||
imports = [
|
||||
(import ./lib/module self.packages inputs)
|
||||
];
|
||||
};
|
||||
|
||||
default = self.homeManagerModules.neovim-flake;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue