nixos-config/user/app/virtualization/virtualization.nix

24 lines
428 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
# Various packages related to virtualization, compatability and sandboxing
home.packages = with pkgs; [
# Virtual Machines and wine
2023-08-12 00:28:24 +05:30
libvirt
virt-manager
qemu
2023-10-29 07:13:37 +05:30
uefi-run
2023-08-12 00:28:24 +05:30
lxc
swtpm
bottles
# Filesystems
dosfstools
];
2023-10-29 07:13:37 +05:30
home.file.".config/libvirt/qemu.conf".text = ''
nvram = ["/run/libvirt/nix-ovmf/OVMF_CODE.fd:/run/libvirt/nix-ovmf/OVMF_VARS.fd"]
'';
}