summaryrefslogtreecommitdiff
path: root/modules/server/ssh.nix
diff options
context:
space:
mode:
authorGrigory Shipunov2025-01-03 23:31:05 +0000
committerGrigory Shipunov2025-01-04 15:37:10 +0000
commit6b472b8b0272f23808f5cd7db7b22474b1eaee7a (patch)
tree670eb2e77fa6f8418df6701820a7f2f26fa69843 /modules/server/ssh.nix
parent5d160018bab3674406cc103955c8c28a63ad08b4 (diff)
remove eternal-terminal
Diffstat (limited to 'modules/server/ssh.nix')
-rw-r--r--modules/server/ssh.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/server/ssh.nix b/modules/server/ssh.nix
index dd91843..4c27a00 100644
--- a/modules/server/ssh.nix
+++ b/modules/server/ssh.nix
@@ -1,6 +1,5 @@
{ ... }:
{
- services.eternal-terminal.enable = true;
programs.mosh.enable = true;
services.openssh = {
enable = true;
@@ -8,7 +7,7 @@
settings.PasswordAuthentication = false;
};
- networking.firewall.allowedTCPPorts = [ 22 2020 ];
+ networking.firewall.allowedTCPPorts = [ 22 ];
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJl9iYG5oHBq/poBn7Jf1/FGWWbAnbx+NKjs7qtT3uAK 0xa@toaster 2024-12-31"
];