mirror of
https://git.gay/xqtc/nixos-config
synced 2025-04-30 18:27:29 +02:00
15 lines
344 B
Nix
15 lines
344 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;
|
|
}
|