fix(tazjin/nixos): default to shared home config

If a system doesn't have an overridden home config, just use the shared one.

Change-Id: I6a61f02ec49bfbf0057be7e6481847ee053e7fda
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11766
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
Vincent Ambo 2024-06-09 13:04:26 +03:00 committed by clbot
parent 23e0973cdf
commit eba19f822a

View file

@ -15,5 +15,6 @@
nix.settings.trusted-users = [ "tazjin" ];
home-manager.useGlobalPkgs = true;
home-manager.users.tazjin = depot.users.tazjin.home."${config.networking.hostName}";
home-manager.users.tazjin = with depot.users.tazjin;
home."${config.networking.hostName}" or home.shared;
}