17 lines
234 B
Nix
17 lines
234 B
Nix
{
|
|
|
|
|
|
virtualisation.oci-containers = {
|
|
containers.nginx = {
|
|
image = "nginx";
|
|
};
|
|
};
|
|
|
|
|
|
systemd.services.podman-nginx = {
|
|
unitConfig = {
|
|
OnFailure = "echo oh noes!";
|
|
StartLimitBurst = 10;
|
|
};
|
|
};
|
|
}
|