configs/laptop/libvirt.nix

16 lines
279 B
Nix
Raw Permalink Normal View History

2024-08-02 22:06:05 +02:00
{ config, pkgs, ... }:
{
virtualisation.libvirtd.enable = true;
environment.systemPackages = with pkgs; [
qemu_kvm
libvirt
polkit
2024-08-02 22:19:59 +02:00
polkit-kde-agent
2024-08-02 22:06:05 +02:00
];
2024-08-02 22:16:15 +02:00
users.users.geir = {
extraGroups = [
"libvirt"
];
};
2024-08-02 22:06:05 +02:00
}