My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/configuration/server/openssh/default.nix

18 lines
328 B

{ config, ... }:
{
services.openssh = {
enable = true;
permitRootLogin = "prohibit-password";
passwordAuthentication = false;
# Required for root
extraConfig = ''
Match Address 127.0.0.1
PermitRootLogin yes
'';
};
# Also enable mosh because /shrug
programs.mosh.enable = true;
}