From 9660c518728cde33ee388d61122d93b49e1f94c9 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Tue, 2 Jan 2024 16:39:30 +0300 Subject: [PATCH] Run fastfetch on servers only once and add banner --- modules/openssh/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/openssh/default.nix b/modules/openssh/default.nix index cadab47..040f113 100644 --- a/modules/openssh/default.nix +++ b/modules/openssh/default.nix @@ -2,7 +2,8 @@ serverSystemConfiguration { services.openssh = enabled { - ports = [ 2222 ]; + banner = "Welcome to RGBCube's server!"; + ports = [ 2222 ]; settings = { KbdInteractiveAuthentication = false; PasswordAuthentication = false;