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 {
flake = {
homeConfigurations =
lib.foldr (a: b: a // b) {} (
map (hostName: mkHomeConfig {inherit hostName;}) [
"Tytonidae"
"Akun"
]
)
// mkHomeConfig {
hostName = "Cape";
unixName = "alice";
};
homeConfigurations = lib.foldr (a: b: a // b) {} (
[
# Hostname
]
|> map (hostName: mkHomeConfig {inherit hostName;})
);
inherit homeModules;
};
}