Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

nixos/systemd: document what `scriptArgs` is for

+5 -1
+5 -1
nixos/lib/systemd-unit-options.nix
··· 324 324 scriptArgs = mkOption { 325 325 type = types.str; 326 326 default = ""; 327 - description = lib.mdDoc "Arguments passed to the main process script."; 327 + example = "%i"; 328 + description = lib.mdDoc '' 329 + Arguments passed to the main process script. 330 + Can contain specifiers (`%` placeholders expanded by systemd, see {manpage}`systemd.unit(5)`). 331 + ''; 328 332 }; 329 333 330 334 preStart = mkOption {