diff options
| author | seth <[email protected]> | 2023-10-07 10:10:55 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-10-07 10:18:46 -0400 |
| commit | 519191cd9f31d1fe1c205535ddc4efe5f2e63793 (patch) | |
| tree | 441a3b0cbf33a15ac052a1fd6a6894cf169f493b /modules/flake/homeConfigurations.nix | |
| parent | 62a26a94a11774b7c14ea10cde0ca2294990fb9b (diff) | |
treewide!: remove flake-parts
while i love flake parts, i want to keep dependencies for this project as small as possible
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; - } |
