feat(ssh/openssh): overhauling ssh and openssh modules

This commit is contained in:
2025-09-10 18:50:49 +02:00
parent 00acad3833
commit 65de9592a0
10 changed files with 176 additions and 105 deletions

View File

@@ -0,0 +1,34 @@
{
config,
lib,
...
}:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.nixos.services.openssh;
in
{
options = {
nixos.services.openssh = {
enable = mkEnableOption "Enables ssh";
};
};
config = mkIf cfg.enable {
programs.ssh = {
knownHosts = {
publicKeyFile = /etc/ssh/ssh_host_ed25519_key.pub;
};
};
services.openssh = {
enable = true;
settings = {
AcceptEnv = "WAYLAND_DISPLAY";
GatewayPorts = "clientspecified";
PasswordAuthentication = false;
PermitRootLogin = "no";
StreamLocalBindUnlink = "yes";
X11Forwarding = true;
};
};
};
}