Skip to content

Commit f9cb2b5

Browse files
committedFeb 15, 2017
nixos/security.wrappers: use literalExample in documentation
It's much more readable when the example attrset is pretty printed instead of written as one line.
1 parent a45821e commit f9cb2b5

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed
 

‎nixos/modules/security/wrappers/default.nix

+11-9
Original file line numberDiff line numberDiff line change
@@ -99,15 +99,17 @@ in
9999
security.wrappers = lib.mkOption {
100100
type = lib.types.attrs;
101101
default = {};
102-
example = {
103-
sendmail.source = "/nix/store/.../bin/sendmail";
104-
ping = {
105-
source = "${pkgs.iputils.out}/bin/ping";
106-
owner = "nobody";
107-
group = "nogroup";
108-
capabilities = "cap_net_raw+ep";
109-
};
110-
};
102+
example = lib.literalExample
103+
''
104+
{ sendmail.source = "/nix/store/.../bin/sendmail";
105+
ping = {
106+
source = "${pkgs.iputils.out}/bin/ping";
107+
owner = "nobody";
108+
group = "nogroup";
109+
capabilities = "cap_net_raw+ep";
110+
};
111+
}
112+
'';
111113
description = ''
112114
This option allows the ownership and permissions on the setuid
113115
wrappers for specific programs to be overridden from the

0 commit comments

Comments
 (0)
Please sign in to comment.