aboutsummaryrefslogtreecommitdiff
path: root/modules/home
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home')
-rw-r--r--modules/home/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/modules/home/default.nix b/modules/home/default.nix
deleted file mode 100644
index d90e6d2..0000000
--- a/modules/home/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ config, inputs, lib, ... }:
-let
- actualPath = [ "home-manager" "users" config.my.user.name "my" "home" ];
- aliasPath = [ "my" "home" ];
-
- cfg = config.my.user.home;
-in
-{
- imports = [
- inputs.home-manager.nixosModule # enable home-manager options
- (lib.mkAliasOptionModule aliasPath
- actualPath) # simplify setting home options
- ];
-
- config = {
- home-manager = {
- # Not a fan of out-of-directory imports, but this is a good exception
- users.${config.my.user.name} = import ../../home;
-
- # Nix Flakes compatibility
- useGlobalPkgs = true;
- useUserPackages = true;
-
- # Forward inputs to home-manager configuration
- extraSpecialArgs = { inherit inputs; };
- };
- };
-}