aboutsummaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'profiles')
-rw-r--r--profiles/services/podman.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/profiles/services/podman.nix b/profiles/services/podman.nix
index 4a132d2..bd5aa3c 100644
--- a/profiles/services/podman.nix
+++ b/profiles/services/podman.nix
@@ -1,5 +1,13 @@
{
virtualisation.podman = {
enable = true;
+ dockerCompat = true;
+ autoPrune.enable = true;
+ autoPrune.flags = [
+ "--all"
+ ];
+ defaultNetwork.settings.dns_enabled = true;
};
+
+ virtualisation.oci-containers.backend = "podman";
}