diff options
| author | Baitinq <[email protected]> | 2022-06-20 01:46:23 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-06-20 01:46:23 +0200 |
| commit | 8b15f351d73ba22c79191d6be9e4de8e280dfb2c (patch) | |
| tree | 2b97466fc176d2ed4f537fce7b46f49662dd7d08 /hosts | |
| parent | Add overlay composing (diff) | |
| download | nixos-config-8b15f351d73ba22c79191d6be9e4de8e280dfb2c.tar.gz nixos-config-8b15f351d73ba22c79191d6be9e4de8e280dfb2c.tar.bz2 nixos-config-8b15f351d73ba22c79191d6be9e4de8e280dfb2c.zip | |
Refractor
Diffstat (limited to 'hosts')
| -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) ]; }; } ]; |