File tree 1 file changed +11
-9
lines changed
nixos/modules/security/wrappers
1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change 99
99
security . wrappers = lib . mkOption {
100
100
type = lib . types . attrs ;
101
101
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
+ '' ;
111
113
description = ''
112
114
This option allows the ownership and permissions on the setuid
113
115
wrappers for specific programs to be overridden from the
You can’t perform that action at this time.
0 commit comments