Files
nixos-config/configs/libvirt.nix
Alexander Szczepanski 95eaa7840f desktop-2024-09-16-22-47-01
2024-09-16 22:47:01 +02:00

32 lines
627 B
Nix
Executable File

{ pkgs, ... }:
{
users.extraGroups.vboxusers.members = [ "alex" ];
virtualisation = {
virtualbox.host ={
enable = true;
# enableExtensionPack = true;
};
libvirtd = {
enable = true;
qemu = {
package = pkgs.qemu_kvm;
swtpm.enable = true;
ovmf = {
enable = true;
packages = [
(pkgs.OVMF.override {
secureBoot = true;
tpmSupport = true;
}).fd
];
};
};
};
spiceUSBRedirection.enable = true;
};
environment.systemPackages = with pkgs; [ proot virtiofsd ];
}