Files
stormwind-nixfiles/sshd.nix

10 lines
111 B
Nix
Raw Normal View History

2025-01-13 00:46:22 +01:00
{ config, pkgs, ... }:
{
services.openssh = {
enable = true;
passwordAuthentication = true;
};
}