Files
stormwind-nixfiles/sshd.nix
RootHost-Stormwind 3dbfc323e6 initial commit
2025-01-13 00:46:22 +01:00

10 lines
111 B
Nix

{ config, pkgs, ... }:
{
services.openssh = {
enable = true;
passwordAuthentication = true;
};
}