Move openssh configuration
All checks were successful
/ check (push) Successful in 1m34s

This commit is contained in:
Oliver Davies 2025-07-25 10:33:49 +01:00
parent ad516fd7e0
commit ce1fa163fd
9 changed files with 16 additions and 28 deletions

View file

@ -0,0 +1,8 @@
{ lib, ... }:
{
flake.modules.nixos.pc.services.openssh.settings = {
PasswordAuthentication = false;
PermitRootLogin = lib.mkForce "no";
};
}