16 lines
265 B
Nix
16 lines
265 B
Nix
{ ... }:
|
|
|
|
{
|
|
virtualisation = {
|
|
useEFIBoot = true;
|
|
libvirtd = {
|
|
enable = true;
|
|
nss.enableGuest = true;
|
|
startDelay = 1;
|
|
onShutdown = "shutdown";
|
|
};
|
|
};
|
|
#rootDevice = "/dev/disk/by-label/nixos";
|
|
#mountHostNixStore = true;
|
|
}
|
|
|