diff options
author | sss <sss@dark-alexandr.net> | 2025-07-01 02:03:23 +0300 |
---|---|---|
committer | sss <sss@dark-alexandr.net> | 2025-07-01 02:03:23 +0300 |
commit | 188f69443c0873970d41217b52e11c46d584c06d (patch) | |
tree | eab9f51137f212c7bfe7e512490748dae371b698 /qemu_my.nix |
nix common overlays initial commit
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; + }); +} |