{ inputs, ... }: { flake.modules.nixos.sudo = { pkgs, lib, ... }: { security.sudo = { enable = true; extraRules = [{ groups = [ "wheel" ]; commands = [ { command = "ALL"; options = [ "NOPASSWD" ]; } ]; }]; }; }; }