3
0
Fork 0
forked from mirrors/nixpkgs

Don't override the baseUnit's PATH by default

This commit is contained in:
Shea Levy 2014-03-12 20:03:14 -04:00
parent 3ed3c60d0f
commit 59a060523e

View file

@ -173,7 +173,7 @@ let
serviceConfig = { name, config, ... }: {
config = mkMerge
[ { # Default path for systemd services. Should be quite minimal.
[ (mkIf (config.baseUnit == null) { # Default path for systemd services. Should be quite minimal.
path =
[ pkgs.coreutils
pkgs.findutils
@ -182,7 +182,7 @@ let
systemd
];
environment.PATH = config.path;
}
})
(mkIf (config.preStart != "")
{ serviceConfig.ExecStartPre = makeJobScript "${name}-pre-start" ''
#! ${pkgs.stdenv.shell} -e