mirror of
https://git.feal.no/felixalb/nixos-config.git
synced 2024-12-12 16:01:49 +01:00
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" ];
|
|
}
|
|
|