36 lines
977 B
Nix
36 lines
977 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Runtime
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
autoPrune.enable = true;
|
|
dockerCompat = true;
|
|
};
|
|
virtualisation.oci-containers.backend = "podman";
|
|
|
|
# Networks
|
|
systemd.services."podman-network-test_default" = {
|
|
path = [ pkgs.podman ];
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
RemainAfterExit = true;
|
|
ExecStop = "podman network rm -f test_default";
|
|
};
|
|
script = ''
|
|
podman network inspect test_default || podman network create test_default
|
|
'';
|
|
partOf = [ "podman-compose-test-root.target" ];
|
|
wantedBy = [ "podman-compose-test-root.target" ];
|
|
};
|
|
|
|
# Root service
|
|
# When started, this will automatically create all resources and start
|
|
# the containers. When stopped, this will teardown all resources.
|
|
systemd.targets."podman-compose-test-root" = {
|
|
unitConfig = {
|
|
Description = "Root target generated by compose2nix.";
|
|
};
|
|
wantedBy = [ "multi-user.target" ];
|
|
};
|
|
}
|