13 lines
214 B
Nix
13 lines
214 B
Nix
{ ... }:
|
|
{
|
|
virtualisation.libvirtd = {
|
|
enable = true;
|
|
qemu = {
|
|
runAsRoot = false;
|
|
swtpm.enable = true;
|
|
};
|
|
};
|
|
|
|
environment.globalPersistence.user.directories = [ ".config/libvirt" ];
|
|
}
|