configs/laptop/libvirt.nix
2024-08-02 22:16:15 +02:00

15 lines
258 B
Nix

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