home darwin

This commit is contained in:
ChaotiCryptidz 2022-03-09 19:42:28 +00:00
parent a81ae457e7
commit 1de748aef8
No known key found for this signature in database

View 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;
};
};
}