feat(nix): enable Docker and disable Podman compatibility

- Enabled Docker support by setting `docker.enable` to true.
- Disabled Podman's Docker compatibility mode with `podman.dockerCompat`.
- Improves virtualization configuration by prioritizing Docker usage.
This commit is contained in:
Harald Hoyer 2026-01-22 11:28:06 +01:00
parent 31c70d3b26
commit 4060ee4b92

View file

@ -109,6 +109,8 @@ with lib.metacfg;
virtualisation = {
libvirtd.enable = true;
docker.enable = true;
podman.dockerCompat = false;
};
system.autoUpgrade = {