Remove home-manager configuration cannot eval in non-nixos machine

This commit is contained in:
ulic-youthlic 2025-06-09 15:52:40 +08:00
parent 6a3473813d
commit 517ff4223d
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721

View file

@ -63,17 +63,12 @@
}; };
in { in {
flake = { flake = {
homeConfigurations = homeConfigurations = lib.foldr (a: b: a // b) {} (
lib.foldr (a: b: a // b) {} ( [
map (hostName: mkHomeConfig {inherit hostName;}) [ # Hostname
"Tytonidae" ]
"Akun" |> map (hostName: mkHomeConfig {inherit hostName;})
] );
)
// mkHomeConfig {
hostName = "Cape";
unixName = "alice";
};
inherit homeModules; inherit homeModules;
}; };
} }