feat: add virt-manager config

This commit is contained in:
Felix Schröter 2020-10-03 16:56:19 +02:00
parent f791454017
commit 288ad32856
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58

View file

@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
boot.kernelModules = [ "kvm-amd" "kvm-intel" ];
virtualisation.libvirtd.enable = true;
environment.systemPackages = with pkgs; [ virt-manager ];
}