diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-08-14 20:11:13 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-08-14 20:11:13 -0700 |
| commit | c691bee08c8b2fcd68b0ece896109e7571b69b7d (patch) | |
| tree | fcf47a870c12b48c31b47d75514837097744e05b | |
| parent | add keycloak for OAuth, runbooks, and finish forgejo setup (diff) | |
| download | infra-c691bee08c8b2fcd68b0ece896109e7571b69b7d.tar.gz | |
configure podman
| -rw-r--r-- | profiles/services/podman.nix | 8 |
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"; } |
