11 lines
283 B
Nix
11 lines
283 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
# WIP
|
||
|
security.polkit.enable = true; # Required for libvirt
|
||
|
virtualisation.libvirtd.enable = true;
|
||
|
programs.dconf.enable = true;
|
||
|
environment.systemPackages = with pkgs; [ virt-manager ];
|
||
|
users.users.felixalb.extraGroups = [ "libvirtd" ];
|
||
|
}
|
||
|
|