fix: use new per-system target for hms alias

This commit is contained in:
Iain Learmonth 2025-06-07 14:32:45 +01:00
parent f655c56b22
commit c03c840154

View file

@ -24,7 +24,9 @@ in
]; ];
home.shellAliases = { home.shellAliases = {
hms = hms =
"home-manager switch --flake ~/.config/nix-configs#irl" + (if cfg.gui-packages then "-gui" else ""); "home-manager switch --flake ~/.config/nix-configs#irl"
+ (if cfg.gui-packages then "-gui" else "")
+ "-${pkgs.system}";
}; };
programs.bash = { programs.bash = {
enable = true; enable = true;