diff options
Diffstat (limited to 'qemu_my.nix')
-rw-r--r-- | qemu_my.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/qemu_my.nix b/qemu_my.nix new file mode 100644 index 0000000..15f79be --- /dev/null +++ b/qemu_my.nix @@ -0,0 +1,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; + }); +} |