aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 8d7a3fd..b88bf36 100644
--- a/flake.nix
+++ b/flake.nix
@@ -61,5 +61,16 @@
];
};
};
+ homeConfigurations = {
+ inherit inputs system pkgs;
+ "void" = home-manager.lib.homeManagerConfiguration {
+# inherit pkgs;
+ pkgs = nixpkgs.legacyPackages.${system};
+ modules = [ ./void/home.nix ];
+ extraSpecialArgs = {
+ inherit system inputs pkgs;
+ };
+ };
+ };
};
}