nix-conf/system/modules/virtualization.nix
2025-09-28 12:37:26 +08:00

16 lines
227 B
Nix

{
...
}:
{
virtualisation = {
docker.enable = true;
# Run container as systemd service
oci-containers = {
backend = "podman";
containers = { };
};
spiceUSBRedirection.enable = true;
};
}