flake/modules/nixos/system/services.nix
2024-12-29 11:16:09 +00:00

9 lines
170 B
Nix

{ pkgs, lib, config, ... }: {
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
X11Forwarding = false;
};
};
}