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.
This commit is contained in:
parent
a45821e7a8
commit
f9cb2b5640
@ -99,15 +99,17 @@ in
|
|||||||
security.wrappers = lib.mkOption {
|
security.wrappers = lib.mkOption {
|
||||||
type = lib.types.attrs;
|
type = lib.types.attrs;
|
||||||
default = {};
|
default = {};
|
||||||
example = {
|
example = lib.literalExample
|
||||||
sendmail.source = "/nix/store/.../bin/sendmail";
|
''
|
||||||
ping = {
|
{ sendmail.source = "/nix/store/.../bin/sendmail";
|
||||||
source = "${pkgs.iputils.out}/bin/ping";
|
ping = {
|
||||||
owner = "nobody";
|
source = "${pkgs.iputils.out}/bin/ping";
|
||||||
group = "nogroup";
|
owner = "nobody";
|
||||||
capabilities = "cap_net_raw+ep";
|
group = "nogroup";
|
||||||
};
|
capabilities = "cap_net_raw+ep";
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
'';
|
||||||
description = ''
|
description = ''
|
||||||
This option allows the ownership and permissions on the setuid
|
This option allows the ownership and permissions on the setuid
|
||||||
wrappers for specific programs to be overridden from the
|
wrappers for specific programs to be overridden from the
|
||||||
|
Loading…
x
Reference in New Issue
Block a user