add ubuntu test pod

This commit is contained in:
NyxErinys 2026-05-17 23:21:23 -05:00
parent 289b69d342
commit 0ac4dabdb5
4 changed files with 21 additions and 7 deletions

View file

@ -1,8 +1,8 @@
{ cfg, lib, ... }:
{ cfg, lib, inputs, ... }:
let
manifests = [
""
];
imported = map ( n: import ${n} { inherit cfg, lib } ) manifests;
imported = map ( n: import ${n} { inherit cfg lib inputs } ) manifests;
in
lib.foldl' lib.recursiveUpdate {} imported