{config, pkgs, lib, ... }: { # Define a user account. Don't forget to set a password with ‘passwd’. users = { users.jerry = { isNormalUser = true; description = "Jerry Finlinson"; extraGroups = [ "input" "wireshark" ]; # (wheel) Enable ‘sudo’ for the user. shell = pkgs.nushell; }; }; security.pam = { sshAgentAuth.enable = true; # services.sudo.sshAgentAuth = true; }; # I can't think of a better spot to put this rn. services.openssh = { ports = [ 22 2200 ]; # needed because isp blocks ssh over 22 }; }