diff --git a/configuration.nix b/configuration.nix index 8725ec4..275b060 100644 --- a/configuration.nix +++ b/configuration.nix @@ -4,9 +4,13 @@ ./aprs.nix ]; environment.systemPackages = with pkgs; [ vim git direwolf ]; - security.sudo.extraRules = [ - { users = [ "jim" ]; - options = [ "NOPASSWD" ]; + security.sudo.extraRules= [ + { users = [ "jim" ]; + commands = [ + { command = "ALL" ; + options= [ "NOPASSWD" ]; + } + ]; } ]; services.openssh = {