added libvirt to workstation

This commit is contained in:
Geir Okkenhaug Jerstad 2024-08-06 10:14:50 +02:00
parent 6d94ff47dc
commit 691f093a93

9
workstation/libvirt.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
virtualisation.libvirtd.enable = true;
environment.systemPackages = with pkgs; [
qemu_kvm
libvirt
polkit
];
}