Archived
1
0
This repository has been archived on 2026-05-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
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;
};
}