Auto-commit: 2026-01-07 08:36:07

This commit is contained in:
2026-01-07 08:36:07 +00:00
parent d918eefd8e
commit 1779e0f2f1

View File

@@ -0,0 +1,16 @@
{ config, lib, ... }:
{
virtualisation = {
docker.enable = true;
spiceUSBRedirection.enable = config.my.virtualisation.enable;
libvirtd = lib.mkIf config.my.virtualisation.enable {
enable = true;
qemu = {
swtpm.enable = true;
runAsRoot = false;
};
onShutdown = "shutdown";
nss.enableGuest = true;
};
};
}