mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
22 lines
396 B
Nix
22 lines
396 B
Nix
{ meta, config, lib, inputs, tf, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
options.home-manager.users = mkOption {
|
|
type = types.attrsOf (types.submoduleWith {
|
|
modules = singleton meta.modules.home;
|
|
specialArgs = {
|
|
inherit inputs tf meta;
|
|
nixos = config;
|
|
};
|
|
});
|
|
};
|
|
|
|
config = {
|
|
home-manager = {
|
|
useUserPackages = true;
|
|
useGlobalPkgs = true;
|
|
};
|
|
};
|
|
}
|