fix: eval error

This commit is contained in:
Moritz Böhme 2025-04-19 16:48:45 +02:00
parent 2a1262df2f
commit f761ede7ff
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9

View file

@ -11,22 +11,20 @@
mkEnableOption mkEnableOption
mkIf mkIf
mapAttrsToList mapAttrsToList
attrNames
map
concatLines concatLines
mkOption mkOption
types types
; ;
cfg = config.our.buildMachines; cfg = config.our.buildMachines;
others = filterAttrs (n: _v: n != config.networking.hostName) self.nixosConfigurations; builders = filterAttrs (_n: v: v.config.our.buildMachines.enable) self.nixosConfigurations;
others = filterAttrs (n: _v: n != config.networking.hostName) builders;
mkBuilder = hostName: attrs: let mkBuilder = hostName: attrs: let
config' = attrs.config; config' = attrs.config;
cfg' = config'.our.buildMachines; cfg' = config'.our.buildMachines;
pkgs' = attrs.pkgs; pkgs' = attrs.pkgs;
in in {
mkIf cfg'.enable {
# NOTE: https://github.com/NixOS/nix/issues/3177 # NOTE: https://github.com/NixOS/nix/issues/3177
hostName = hostName =
if hostName == config.networking.hostName if hostName == config.networking.hostName
@ -52,7 +50,7 @@
mandatoryFeatures = []; mandatoryFeatures = [];
}; };
buildMachines = mapAttrsToList mkBuilder self.nixosConfigurations; buildMachines = mapAttrsToList mkBuilder builders;
remotebuildKeys = remotebuildKeys =
mapAttrsToList ( mapAttrsToList (
@ -60,12 +58,11 @@
) )
others; others;
mkMatch = host: '' mkMatch = hostName: _v: ''
Match User remotebuild Host ${host} Match User remotebuild Host ${hostName}
IdentityFile ${config.clan.core.vars.generators.remotebuild.files."ssh.id_ed25519".path} IdentityFile ${config.clan.core.vars.generators.remotebuild.files."ssh.id_ed25519".path}
''; '';
othersName = attrNames others; sshConfig = concatLines (mapAttrsToList mkMatch others);
sshConfig = concatLines (map mkMatch othersName);
in { in {
options.our.buildMachines = { options.our.buildMachines = {
enable = mkEnableOption "Use this machine as a remoteBuilder for others and vice versa."; enable = mkEnableOption "Use this machine as a remoteBuilder for others and vice versa.";