15 lines
No EOL
275 B
Nix
15 lines
No EOL
275 B
Nix
{cfg, lib, inputs, ...}:
|
|
{
|
|
ubuntu.content = {
|
|
apiVersion = "v1";
|
|
kind = "Pod";
|
|
metadata.name = "ubuntu";
|
|
spec.containers = [
|
|
{
|
|
name = "ubuntu";
|
|
image = "ubuntu:latest";
|
|
command = ["tail" "-f" "/dev/null"];
|
|
}
|
|
];
|
|
};
|
|
} |