7 lines
110 B
Nix
7 lines
110 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.openssh.enable = true;
|
|
services.openssh.permitRootLogin = "no";
|
|
}
|