diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-09-08 08:29:20 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-09-08 08:29:20 -0700 |
| commit | 7278be9a909b3c92d2aa5aa832d645175b18acc5 (patch) | |
| tree | e38ecf458881d8344ac80bc7ddc2031868e1fea7 /modules/home.nix | |
| parent | Revert "move droplet specific settings to its own module" (diff) | |
| download | infra-7278be9a909b3c92d2aa5aa832d645175b18acc5.tar.gz | |
move common modules together and simplify imports
Diffstat (limited to 'modules/home.nix')
| -rw-r--r-- | modules/home.nix | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/modules/home.nix b/modules/home.nix deleted file mode 100644 index 6b6b518..0000000 --- a/modules/home.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ - userProfiles, - lib, - ... -}: -let - inherit (lib) mkOption; - inherit (lib.types) - submodule - listOf - attrsOf - str - ; -in -{ - options = { - home = mkOption { - type = attrsOf ( - submodule ( - { name, ... }: - { - options = { - name = mkOption { - type = str; - default = name; - }; - profiles = mkOption { - type = listOf str; - apply = map (v: userProfiles.${v}); - }; - }; - } - ) - ); - default = { }; - }; - }; -} |
