mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-12 05:16:25 +03:00
Address review feedback: Attempt to fix wonky indentation
This commit is contained in:
parent
d95a8f5a13
commit
878be9c20b
2 changed files with 5 additions and 5 deletions
|
@ -579,7 +579,8 @@ in rec {
|
|||
'' else "")
|
||||
+ optionalString (def ? stopIfChanged && !def.stopIfChanged) ''
|
||||
X-StopIfChanged=false
|
||||
'' + optionalString (def ? notSocketActivated && def.notSocketActivated) ''
|
||||
''
|
||||
+ optionalString (def ? notSocketActivated && def.notSocketActivated) ''
|
||||
X-NotSocketActivated=true
|
||||
'' + attrsToSection def.serviceConfig);
|
||||
};
|
||||
|
|
|
@ -434,10 +434,9 @@ in
|
|||
'';
|
||||
|
||||
systemd.services.systemd-udevd = {
|
||||
restartTriggers = [ config.environment.etc."udev/rules.d".source ];
|
||||
notSocketActivated = true;
|
||||
};
|
||||
|
||||
restartTriggers = [ config.environment.etc."udev/rules.d".source ];
|
||||
notSocketActivated = true;
|
||||
};
|
||||
};
|
||||
|
||||
imports = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue