From b5b05ac62005473bbbb852c275491555e482ec4d Mon Sep 17 00:00:00 2001 From: Nichkara Date: Sat, 23 May 2026 12:49:04 +0200 Subject: [PATCH] Change podman to docker for distrobox --- configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 262a079..280c54f 100755 --- a/configuration.nix +++ b/configuration.nix @@ -72,7 +72,7 @@ in enable = true; # Create a `docker` alias for podman, to use it as a drop-in replacement - dockerCompat = true; + dockerCompat = false; # Required for containers under podman-compose to be able to talk to each other. defaultNetwork.settings.dns_enabled = true; @@ -82,6 +82,8 @@ in # Configure console keymap console.keyMap = "de-latin1"; + virtualisation.docker.enable = true; + environment.systemPackages = with pkgs; [ wget strongswan @@ -89,6 +91,7 @@ in dive podman-tui podman-compose + docker-compose gmp gmp.dev pkg-config @@ -109,6 +112,7 @@ in appimage-run libgcrypt libxcrypt + rclone ]; };