Skip to content

Commit

Permalink
base: add note about leaving UsePAM on
Browse files Browse the repository at this point in the history
  • Loading branch information
mkg20001 committed Mar 24, 2024
1 parent 3afd2f4 commit 6cfa82e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/defaults/base/sshd.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ with lib;
HostbasedAuthentication = false;
PermitEmptyPasswords = false;
UseDns = false;
UsePAM = mkDefault true;
# disabling this breaks ssh login under nixos
UsePAM = true;
};

# https://gitlab.com/gitlab-org/gitlab-foss/-/blob/master/doc/user/gitlab_com/index.md#ssh-host-keys-fingerprints
Expand Down

0 comments on commit 6cfa82e

Please sign in to comment.