1
0
mirror of http://code.capytal.cc/dot013/spacestation.git synced 2026-01-19 09:16:12 -03:00
Files
spacestation/common/virtualisation.nix

14 lines
224 B
Nix

{...}: {
virtualisation = {
oci-containers = {
backend = "podman";
};
podman = {
enable = true;
dockerCompat = true;
dockerSocket.enable = true;
};
docker.enable = false;
};
}