configs/laptop/libvirt.nix
Geir Okkenhaug Jerstad 66a6fa05a2 added libvirt to laptop
2024-08-02 22:06:05 +02:00

10 lines
153 B
Nix

{ config, pkgs, ... }:
{
virtualisation.libvirtd.enable = true;
environment.systemPackages = with pkgs; [
qemu_kvm
libvirt
polkit
];
}