8 lines
124 B
Nix
8 lines
124 B
Nix
{ machineNames, ... }:
|
|
{
|
|
nix = {
|
|
binaryCaches = map (machineName: "ssh://${machineName}.local") machineNames;
|
|
};
|
|
}
|
|
|