nixos/modules/openssh.nix

11 lines
136 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
2024-02-17 11:56:20 +01:00
{
services.openssh = {
enable = true;
2024-02-17 11:57:39 +01:00
2024-02-17 11:57:59 +01:00
settings = {
2024-02-17 11:57:39 +01:00
PasswordAuthentication = true;
};
2024-02-17 11:56:20 +01:00
};
}