8 lines
227 B
Nix
8 lines
227 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
virtualisation.libvirtd.enable = true;
|
|
programs.virt-manager.enable = true;
|
|
services.qemuGuest.enable = true;
|
|
services.spice-vdagentd.enable = true; # enable copy and paste between host and guest
|
|
}
|