my over complex system configurations
4

Configure Feed

Select the types of activity you want to include in your feed.

nixos/security/run0: don't get locked out

isabel (Jun 11, 2026, 10:51 AM +0100) acaa198d f6b4e818

+10 -1
+10 -1
modules/nixos/security/run0.nix
··· 1 - { inputs', ... }: 1 + { 2 + lib, 3 + options, 4 + inputs', 5 + ... 6 + }: 2 7 { 3 8 security.run0 = { 4 9 # wheelNeedsPassword = false means wheel group can execute commands without ··· 9 14 garden.packages = { 10 15 inherit (inputs'.extersia.packages) run0-sudo-shim; 11 16 }; 17 + 18 + warnings = lib.lists.optional (options.security.run0 ? enable) '' 19 + Don't get yourself locked out twin 20 + ''; 12 21 }