Commit 3fd9ef4b authored by Tom Fitzhenry's avatar Tom Fitzhenry
Browse files

nixos/ssh: allow PrintMotd to be enabled

parent 2e51a2fd
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -490,6 +490,8 @@ in
                {manpage}`sshd_config(5)` for details.
              '';
            };
            # Disabled by default, since pam_motd handles this.
            PrintMotd = mkEnableOption "printing /etc/motd when a user logs in interactively";
          };
        });
      };
@@ -656,7 +658,6 @@ in
        ${optionalString cfg.allowSFTP ''
          Subsystem sftp ${cfg.sftpServerExecutable} ${concatStringsSep " " cfg.sftpFlags}
        ''}
        PrintMotd no # handled by pam_motd
        AuthorizedKeysFile ${toString cfg.authorizedKeysFiles}
        ${optionalString (cfg.authorizedKeysCommand != "none") ''
          AuthorizedKeysCommand ${cfg.authorizedKeysCommand}