1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-31 04:04:45 +00:00

Update examples

This commit is contained in:
Sam 2024-02-26 22:14:11 -08:00
parent 1be75fe7e8
commit 8f14fefb2d
No known key found for this signature in database
GPG key ID: 07C4B9795517E3B4

View file

@ -132,7 +132,7 @@ in
doas =
{ setuid = true;
owner = "root";
group = "root";
group = "wheel";
source = "''${pkgs.doas}/bin/doas";
};
@ -146,11 +146,11 @@ in
};
# a program with the CAP_NET_RAW capability
# a codesigned program
ping =
{ owner = "root";
group = "root";
capabilities = "cap_net_raw+ep";
group = "wheel";
codesign = true;
source = "''${pkgs.iputils.out}/bin/ping";
};
}