Files
nix/modules/core/network/openssh.nix
2026-02-18 22:44:39 -06:00

16 lines
245 B
Nix

{
den.aspects.openssh = {
nixos = {
services.openssh = {
enable = true;
settings = {
PrintMotd = true;
X11Forwarding = true;
AllowTcpForwarding = true;
};
};
};
};
}