nixfiles/profiles/base/home.nix
ChaotiCryptidz 8c7bdaf9f7 I'm Sorry
2021-12-20 23:48:26 +00:00

18 lines
362 B
Nix

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