16 lines
227 B
Nix
16 lines
227 B
Nix
{
|
|
...
|
|
}:
|
|
{
|
|
virtualisation = {
|
|
docker.enable = true;
|
|
|
|
# Run container as systemd service
|
|
oci-containers = {
|
|
backend = "podman";
|
|
containers = { };
|
|
};
|
|
|
|
spiceUSBRedirection.enable = true;
|
|
};
|
|
}
|