this repo has no description
0
fork

Configure Feed

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

Passwordless shutdown module in hydrogen-sulfide

+15
+1
venus/modules/nixos-darwin/hydrogen-sulfide.nix
··· 29 29 { 30 30 imports = [ 31 31 ./use-tailscale-dns-redirect.nix 32 + ./use-passwordless-shutdown.nix 32 33 ]; 33 34 config = { 34 35 system.stateVersion = "24.11";
+14
venus/modules/nixos-darwin/use-passwordless-shutdown.nix
··· 1 + { config, pkgs, ... }: 2 + { 3 + # Configure sudo 4 + security.sudo = { 5 + extraRules = [ 6 + { 7 + groups = [ "wheel" ]; 8 + commands = [ 9 + { command = "/run/current-system/sw/bin/systemctl poweroff"; options = [ "NOPASSWD" ]; } 10 + ]; 11 + } 12 + ]; 13 + }; 14 + }