0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

nixos/pam: add order comment to each rule line

This commit is contained in:
Majiir Paktu 2023-10-09 22:54:22 -04:00
parent 077cdcc7e9
commit 43f7cb4a95
2 changed files with 5 additions and 3 deletions

View file

@ -597,6 +597,7 @@ let
(map (rule: concatStringsSep " " (
[ type rule.control rule.modulePath ]
++ map formatModuleArgument rule.args
++ [ "# ${rule.name} (order ${toString rule.order})" ]
)))
(concatStringsSep "\n")
];