2024-03-02 23:15:51 +01:00
|
|
|
{ pkgs, ... }:
|
2023-12-28 12:39:55 +01:00
|
|
|
{
|
|
|
|
virtualisation.libvirtd.enable = true;
|
|
|
|
programs.virt-manager.enable = true;
|
2024-03-02 23:15:51 +01:00
|
|
|
virtualisation.libvirtd.qemu.ovmf.packages = [
|
|
|
|
# pkgs.pkgsCross.aarch64-multiplatform.OVMF.fd # AAVMF
|
|
|
|
pkgs.OVMF.fd
|
|
|
|
];
|
|
|
|
virtualisation.spiceUSBRedirection.enable = true;
|
|
|
|
# security.wrappers.spice-client-glib-usb-acl-helper.source = "${pkgs.spice_gtk}/bin/spice-client-glib-usb-acl-helper";
|
2023-12-28 12:39:55 +01:00
|
|
|
# home manager
|
|
|
|
# dconf.settings = {
|
|
|
|
# "org/virt-manager/virt-manager/connections" = {
|
|
|
|
# autoconnect = ["qemu:///system"];
|
|
|
|
# uris = ["qemu:///system"];
|
|
|
|
# };
|
|
|
|
# };
|
|
|
|
}
|