Change podman to docker for distrobox

This commit is contained in:
2026-05-23 12:49:04 +02:00
parent 579cd749a9
commit b5b05ac620

View File

@@ -72,7 +72,7 @@ in
enable = true; enable = true;
# Create a `docker` alias for podman, to use it as a drop-in replacement # 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. # Required for containers under podman-compose to be able to talk to each other.
defaultNetwork.settings.dns_enabled = true; defaultNetwork.settings.dns_enabled = true;
@@ -82,6 +82,8 @@ in
# Configure console keymap # Configure console keymap
console.keyMap = "de-latin1"; console.keyMap = "de-latin1";
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
wget wget
strongswan strongswan
@@ -89,6 +91,7 @@ in
dive dive
podman-tui podman-tui
podman-compose podman-compose
docker-compose
gmp gmp
gmp.dev gmp.dev
pkg-config pkg-config
@@ -109,6 +112,7 @@ in
appimage-run appimage-run
libgcrypt libgcrypt
libxcrypt libxcrypt
rclone
]; ];
}; };