add wayland

This commit is contained in:
2025-07-23 23:20:42 +02:00
parent 8c640ffe87
commit 484999d2b2
41 changed files with 1612 additions and 25 deletions

17
modules/core/ssh.nix Normal file
View File

@@ -0,0 +1,17 @@
{
...
}:
{
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = true;
AllowUsers = null;
UseDns = true;
X11Forwarding = false;
PermitRootLogin = "no";
};
};
networking.firewall.allowedTCPPorts = [ 22 ];
}