Fix network for updated nix.

This commit is contained in:
Tom Alexander
2026-02-14 12:34:24 -05:00
parent 10fe4329e6
commit 4e7f2dd2f3
2 changed files with 11 additions and 4 deletions

View File

@@ -43,7 +43,14 @@
...
}:
let
forAllSystems = nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed;
forAllSystems =
func:
builtins.listToAttrs (
map (system: {
name = system;
value = func system;
}) nixpkgs.lib.systems.flakeExposed
);
nodes = {
controller0 = {
system = "x86_64-linux";