infrastructure/config/profiles/base/home.nix
kat witch c047e05f10
mewp
2021-10-14 23:30:28 +01:00

22 lines
398 B
Nix

{ meta, config, lib, sources, tf, ... }:
with lib;
{
options.home-manager.users = mkOption {
type = types.attrsOf (types.submoduleWith {
modules = singleton meta.modules.home;
specialArgs = {
inherit sources tf meta;
nixos = config;
};
});
};
config = {
home-manager = {
useUserPackages = true;
useGlobalPkgs = true;
};
};
}