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