1{ pkgs, ... }:
2
3{
4 virtualisation = {
5 libvirtd = {
6 enable = true;
7
8 qemu = {
9 swtpm.enable = true;
10 };
11 };
12
13 spiceUSBRedirection.enable = true;
14 };
15
16 services.spice-vdagentd.enable = true;
17
18 environment.systemPackages = with pkgs; [
19 spice
20 spice-protocol
21 ];
22}