Files
nixos-at-home/modules/common/services.nix
2026-05-31 10:56:54 +01:00

7 lines
110 B
Nix

{ config, lib, pkgs, ... }:
{
services.openssh.enable = true;
services.openssh.permitRootLogin = "no";
}