ssh: rename from openssh, update nixos module name

This commit is contained in:
Katherina Walshe-Grey 2025-02-05 19:13:10 +00:00
parent 0c327b20ea
commit 868ffd64e4
2 changed files with 4 additions and 4 deletions

11
common/ssh.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
programs.ssh = {
enable = true;
settings = {
PasswordAuthentication = false;
PermitRootLogin = "no";
};
};
}