nixos/libvirtd: fix remote ssh managment by adding netcat-openbsd in system packages

Virsh/virt-manager uses ssh to connect to master, there it expects openbsd netcat(which
has support for unix sockets) to be avalible, to make a tunnel.

Close #1087.
This commit is contained in:
Jaka Hudoklin 2013-10-17 14:17:29 +02:00 committed by Evgeny Egorochkin
parent 427798268c
commit ad3a0dd8fb

View file

@ -61,7 +61,7 @@ in
config = mkIf cfg.enable {
environment.systemPackages =
[ pkgs.libvirt ]
[ pkgs.libvirt pkgs.netcat-openbsd ]
++ optional cfg.enableKVM pkgs.qemu_kvm;
boot.kernelModules = [ "tun" ];