2015-08-24 11:06:10 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
mainUser = config.krebs.build.user;
|
|
|
|
in {
|
|
|
|
virtualisation.libvirtd.enable = true;
|
|
|
|
users.extraUsers.${mainUser.name}.extraGroups = [ "libvirtd" ];
|
2016-01-14 11:15:20 +01:00
|
|
|
networking.firewall.checkReversePath = false; # TODO: unsolved issue in nixpkgs:#9067 [bug]
|
2015-08-24 11:06:10 +02:00
|
|
|
}
|