16 lines
245 B
Nix
16 lines
245 B
Nix
{
|
|
den.aspects.openssh = {
|
|
nixos = {
|
|
services.openssh = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
PrintMotd = true;
|
|
X11Forwarding = true;
|
|
AllowTcpForwarding = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|