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