From 9f9687bf4ed397c7afba2c54e00597e5dac2351b Mon Sep 17 00:00:00 2001 From: alisceon Date: Thu, 7 May 2026 22:28:52 +0200 Subject: [PATCH] nocker compat --- nixos/hosts/tesla-nixos/configuration.nix | 1 - nixos/modules/base.nix | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/hosts/tesla-nixos/configuration.nix b/nixos/hosts/tesla-nixos/configuration.nix index 13463e7..baa5fa6 100644 --- a/nixos/hosts/tesla-nixos/configuration.nix +++ b/nixos/hosts/tesla-nixos/configuration.nix @@ -21,7 +21,6 @@ in virtualisation = { podman = { enable = true; - dockerCompat = true; defaultNetwork.settings.dns_enabled = true; }; }; diff --git a/nixos/modules/base.nix b/nixos/modules/base.nix index 478cf92..f981cff 100644 --- a/nixos/modules/base.nix +++ b/nixos/modules/base.nix @@ -130,7 +130,7 @@ docker.enable = true; podman = { enable = true; - dockerCompat = lib.mkDefault false; + dockerCompat = false; defaultNetwork.settings.dns_enabled = true; }; oci-containers.backend = "podman";