diff options
Diffstat (limited to 'modules/flake/homeConfigurations.nix')
| -rw-r--r-- | modules/flake/homeConfigurations.nix | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/modules/flake/homeConfigurations.nix b/modules/flake/homeConfigurations.nix deleted file mode 100644 index 1c54b0c..0000000 --- a/modules/flake/homeConfigurations.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ - lib, - flake-parts-lib, - ... -}: let - inherit (lib) mkOption types literalExpression; - inherit (flake-parts-lib) mkTransposedPerSystemModule; -in - mkTransposedPerSystemModule { - name = "homeConfigurations"; - option = mkOption { - type = types.lazyAttrsOf types.raw; - default = {}; - description = '' - Instantiated home-manager configurations. Used by `home-manager` - ''; - example = literalExpression '' - { - user = inputs.home-manager.homeManagerConfiguration { - pkgs = import inputs.nixpkgs {inherit system;}; - modules = [ - ./my-users/home.nix - ]; - }; - } - ''; - }; - - file = ./homeConfigurations.nix; - } |
