From 01284154f71e05098dab8a9c86b84d8b219991e3 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Tue, 28 Oct 2025 13:45:11 -0600 Subject: [PATCH] Update Linode configuration in jawz.nix and adjust SSH settings - Changed hostname reference from 'vps' to 'linode' in jawz.nix for improved clarity. - Modified SSH service configuration in linode's configuration.nix to force start behavior. --- config/jawz.nix | 4 ++-- hosts/linode/configuration.nix | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config/jawz.nix b/config/jawz.nix index 3b84a14..91b5689 100644 --- a/config/jawz.nix +++ b/config/jawz.nix @@ -32,7 +32,7 @@ in enable = true; matchBlocks = { linode = { - hostname = config.my.ips.vps; + hostname = config.my.ips.linode; port = 3456; identityFile = config.sops.secrets."private_keys/${hostName}".path; }; @@ -74,7 +74,7 @@ in "miniserver" "galaxy" "phone" - "vps" + "linode" ]; }; } diff --git a/hosts/linode/configuration.nix b/hosts/linode/configuration.nix index 44fca6b..bed5e62 100644 --- a/hosts/linode/configuration.nix +++ b/hosts/linode/configuration.nix @@ -1,4 +1,5 @@ { + lib, pkgs, config, inputs, @@ -23,7 +24,7 @@ services.openssh = { enable = true; openFirewall = true; - startWhenNeeded = false; + startWhenNeeded = lib.mkForce false; settings = { PasswordAuthentication = false; PermitRootLogin = "prohibit-password";