{cfg, lib, inputs, ...}: { ubuntu.content = { apiVersion = "v1"; kind = "Pod"; metadata.name = "ubuntu"; spec.containers = [ { name = "ubuntu"; image = "ubuntu:latest"; command = [ "sh" "-c" ]; args = [ "tail" "-f" "/dev/null" ] } ]; }; }