3
0
Fork 0
forked from mirrors/nixpkgs

Pull in nix-daemon.socket

This led to the container test failing, which made no sense
whatsoever, until I realized nix-daemon.socket creates the socket
directory as a side effect, which systemd-nspawn then bind-mounts.

http://hydra.nixos.org/build/10397575
This commit is contained in:
Eelco Dolstra 2014-04-18 14:47:02 +02:00
parent d43b536ab6
commit 9bb40b7a5b

View file

@ -277,6 +277,8 @@ in
systemd.packages = [ nix ];
systemd.sockets.nix-daemon.wantedBy = [ "sockets.target" ];
systemd.services.nix-daemon =
{ path = [ nix pkgs.openssl pkgs.utillinux pkgs.openssh ]
++ optionals cfg.distributedBuilds [ pkgs.gzip ];