mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 19:20:32 +01:00
27 lines
401 B
Nix
27 lines
401 B
Nix
{
|
|
lib,
|
|
flake-parts-lib,
|
|
...
|
|
}: let
|
|
inherit
|
|
(lib)
|
|
mkOption
|
|
types
|
|
;
|
|
inherit
|
|
(flake-parts-lib)
|
|
mkTransposedPerSystemModule
|
|
;
|
|
in
|
|
mkTransposedPerSystemModule {
|
|
name = "homeConfigurations";
|
|
option = mkOption {
|
|
type = types.raw;
|
|
default = {};
|
|
description = ''
|
|
home-manager configs
|
|
'';
|
|
};
|
|
file = ./hm-flake-part.nix;
|
|
}
|