mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
24 lines
428 B
Nix
24 lines
428 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Various packages related to virtualization, compatability and sandboxing
|
|
home.packages = with pkgs; [
|
|
# Virtual Machines and wine
|
|
libvirt
|
|
virt-manager
|
|
qemu
|
|
uefi-run
|
|
lxc
|
|
swtpm
|
|
bottles
|
|
|
|
# Filesystems
|
|
dosfstools
|
|
];
|
|
|
|
home.file.".config/libvirt/qemu.conf".text = ''
|
|
nvram = ["/run/libvirt/nix-ovmf/OVMF_CODE.fd:/run/libvirt/nix-ovmf/OVMF_VARS.fd"]
|
|
'';
|
|
|
|
}
|