diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-20 01:46:23 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-20 01:46:23 +0200 |
commit | 4c75f9fa7b7f472d4e43f446257ffb85ac6e78ba (patch) | |
tree | 2ef580360d6e9da145eb54e11757226d9956dde2 /hosts/default.nix | |
parent | Add overlay composing (diff) | |
download | nixos-config-4c75f9fa7b7f472d4e43f446257ffb85ac6e78ba.tar.gz nixos-config-4c75f9fa7b7f472d4e43f446257ffb85ac6e78ba.tar.bz2 nixos-config-4c75f9fa7b7f472d4e43f446257ffb85ac6e78ba.zip |
Refractor
Diffstat (limited to 'hosts/default.nix')
-rw-r--r-- | hosts/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/default.nix b/hosts/default.nix index edac9b7..83fb4c2 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -32,7 +32,7 @@ in home-manager.useUserPackages = true; home-manager.extraSpecialArgs = { inherit pkgs user secrets hostname inputs; }; home-manager.users.${user} = { - imports = [ ./home.nix ] ++ [ (import ./phobos/home.nix) ]; + imports = [ ./home.nix ] ++ [ (import ./${ hostname }/home.nix) ]; }; } ]; |