2
2
mirror of https://git.feal.no/felixalb/nixos-config.git synced 2025-03-23 11:32:51 +01:00

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" ];
}