22 lines
329 B
Nix
22 lines
329 B
Nix
{pkgs, ...}: {
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
pciutils
|
|
virt-manager
|
|
virt-viewer
|
|
spice
|
|
spice-gtk
|
|
spice-protocol
|
|
win-virtio
|
|
win-spice
|
|
sops
|
|
sbctl # Secure boot
|
|
yubikey-manager
|
|
|
|
# Gaming stuff
|
|
mangohud
|
|
protonup-qt
|
|
];
|
|
};
|
|
}
|