summary refs log tree commit diff
path: root/nixos/lib/systemd-lib.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/lib/systemd-lib.nix')
-rw-r--r--nixos/lib/systemd-lib.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/lib/systemd-lib.nix b/nixos/lib/systemd-lib.nix
index aba63886e0f..918180a014b 100644
--- a/nixos/lib/systemd-lib.nix
+++ b/nixos/lib/systemd-lib.nix
@@ -293,7 +293,7 @@ in rec {
 
   mkServiceConfig = path: { name, config, ... }: {
     config = mkMerge
-      [ { # Default path for systemd services.  Should be quite minimal.
+      [ {
           path = mkAfter path;
           environment.PATH = mkIf (config.path != []) "${makeBinPath config.path}:${makeSearchPathOutput "bin" "sbin" config.path}";
         }
@@ -324,6 +324,7 @@ in rec {
       ];
   };
 
+  # Default path for systemd services. Should be quite minimal.
   serviceConfig = mkServiceConfig [
     pkgs.coreutils
     pkgs.findutils