summaryrefslogtreecommitdiff
path: root/modules/flake/homeConfigurations.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-10-07 10:10:55 -0400
committerseth <[email protected]>2023-10-07 10:18:46 -0400
commit519191cd9f31d1fe1c205535ddc4efe5f2e63793 (patch)
tree441a3b0cbf33a15ac052a1fd6a6894cf169f493b /modules/flake/homeConfigurations.nix
parent62a26a94a11774b7c14ea10cde0ca2294990fb9b (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.nix30
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;
- }