sgx: Disable Docker and enable Podman Docker compatibility

Docker has been disabled, with the Podman Docker compatibility feature being enabled instead to ensure system virtualization.
This commit is contained in:
Harald Hoyer 2024-04-10 22:13:19 +02:00
parent d5287f242e
commit e9034a7711

View file

@ -21,9 +21,9 @@
}; };
virtualisation = { virtualisation = {
docker.enable = true; docker.enable = false;
libvirtd.enable = true; libvirtd.enable = true;
podman.dockerCompat = false; podman.dockerCompat = true;
}; };
systemd.services.libvirt-guests.after = [ "network-online.target" ]; systemd.services.libvirt-guests.after = [ "network-online.target" ];