mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
nested 5 items
This commit is contained in:
parent
24aaaa13b2
commit
a474317094
1 changed files with 13 additions and 11 deletions
|
@ -18,17 +18,19 @@ in {
|
||||||
../modules/kmonad.nix
|
../modules/kmonad.nix
|
||||||
kmonad.nixosModules.default
|
kmonad.nixosModules.default
|
||||||
home-manager.nixosModules.home-manager {
|
home-manager.nixosModules.home-manager {
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager = {
|
||||||
home-manager.useUserPackages = true;
|
useGlobalPkgs = true;
|
||||||
home-manager.extraSpecialArgs = { inherit user; };
|
useUserPackages = true;
|
||||||
home-manager.users.${user} = {
|
extraSpecialArgs = { inherit user; };
|
||||||
imports = [
|
users.${user} = {
|
||||||
./home.nix
|
imports = [
|
||||||
../modules/git.nix
|
./home.nix
|
||||||
../modules/urxvt.nix
|
../modules/git.nix
|
||||||
../modules/vim.nix
|
../modules/urxvt.nix
|
||||||
../modules/zsh.nix
|
../modules/vim.nix
|
||||||
];
|
../modules/zsh.nix
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue