nixfiles/profiles/base-darwin/home.nix

19 lines
363 B
Nix
Raw Normal View History

2022-03-09 19:42:28 +00:00
{ 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;
2022-03-09 20:10:19 +00:00
#useUserPackages = true;
2022-03-09 19:42:28 +00:00
};
};
}