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