2024-01-19 03:06:52 +05:30
|
|
|
{ config, pkgs, ... }:
|
2023-06-11 09:34:03 +05:30
|
|
|
|
|
|
|
{
|
|
|
|
# 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
|
2023-06-11 09:34:03 +05:30
|
|
|
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"]
|
|
|
|
'';
|
|
|
|
|
2023-06-11 09:34:03 +05:30
|
|
|
}
|