Nix-Config/modules/k3s/deployments/ubuntu.nix
2026-05-17 23:21:23 -05:00

14 lines
No EOL
230 B
Nix

{cfg, lib, inputs, ...}:
{
ubuntu.content = {
apiVersion = "v1";
kind = "Pod";
metadata.name = "ubuntu";
spec.containers = [
{
name = "ubuntu";
image = "ubuntu:latest";
}
];
};
}