nixfiles/profiles/base/home.nix

19 lines
362 B
Nix
Raw Normal View History

2021-12-26 14:07:09 +00:00
{ inputs, tree, config, lib, ... }:
with lib; {
2021-12-20 23:48:26 +00:00
options.home-manager.users = mkOption {
type = types.attrsOf (types.submoduleWith {
modules = [ ];
specialArgs = {
inherit inputs tree;
nixos = config;
};
});
};
config = {
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
};
};
}