summaryrefslogtreecommitdiff
path: root/qemu_my.nix
blob: 15f79be9ddf0b6e157c179ca905471201dec6023 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ inputs }:
self: super: {
  qemu_my =
    with super;
    (qemu_full.override {
      guestAgentSupport = false;
      jackSupport = false;
      gtkSupport = false;
      vncSupport = false;
      smartcardSupport = false;
      spiceSupport = true;
      usbredirSupport = true;
      xenSupport = false;
      cephSupport = false;
      glusterfsSupport = false;
      openGLSupport = false;
      virglSupport = true;
      libiscsiSupport = false;
      smbdSupport = false;
      tpmSupport = false;
      canokeySupport = false;
      hostCpuOnly = true;
      sdlSupport = false;
    });
}