fix(storage01): Make prometheus work again

By only looking at nixos nodes
This commit is contained in:
Tom Hubrecht 2024-12-08 16:45:18 +01:00
parent 65b188a7cd
commit ba62dcd6a6
Signed by: thubrecht
SSH key fingerprint: SHA256:r+nK/SIcWlJ0zFZJGHtlAoRwq1Rm+WcKAm5ADYMoQPc

View file

@ -1,5 +1,6 @@
{
config,
meta,
nodes,
lib,
...
@ -19,7 +20,7 @@ let
host = node;
};
}
) nodes
) (lib.filterAttrs (name: _: meta.nodes.${name}.nixpkgs.system == "nixos") nodes)
);
in