home darwin
This commit is contained in:
parent
a81ae457e7
commit
1de748aef8
18
profiles/base-darwin/home.nix
Normal file
18
profiles/base-darwin/home.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ inputs, tree, config, lib, ... }:
|
||||
with lib; {
|
||||
options.home-manager.users = mkOption {
|
||||
type = types.attrsOf (types.submoduleWith {
|
||||
modules = [ ];
|
||||
specialArgs = {
|
||||
inherit inputs tree;
|
||||
nixos = config;
|
||||
};
|
||||
});
|
||||
};
|
||||
config = {
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue