Separate podman/docker

This commit is contained in:
Lauren Lagarde 2025-06-25 14:57:07 +00:00
parent 2fe2f29c7d
commit 7f99961f76
2 changed files with 7 additions and 7 deletions

View File

@ -1,11 +1,4 @@
{ ... }: { { ... }: {
virtualisation.docker.enable = true; virtualisation.docker.enable = true;
virtualisation.containers.enable = true; virtualisation.containers.enable = true;
# Enable podman, but don't default to it
virtualisation.podman = {
enable = true;
dockerCompat = false;
defaultNetwork.settings.dns_enabled = true;
};
} }

View File

@ -0,0 +1,7 @@
{ ... }: {
virtualisation.podman = {
enable = true;
dockerCompat = false;
defaultNetwork.settings.dns_enabled = true;
};
}