You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
344 B
Nix
12 lines
344 B
Nix
8 years ago
|
packages: {config, ...}: {
|
||
|
environment.systemPackages = with packages; [
|
||
|
nixpkgs.virtmanager
|
||
|
];
|
||
|
|
||
|
boot.kernelModules = [
|
||
|
"tun" # For full network capabilities in QEMU/KVM
|
||
|
"virtio" # Faster I/O drivers for QEMU/KVM on Linux
|
||
|
"nbd" # For mounting QEMU images (optionally over the network)
|
||
|
];
|
||
|
}
|