From 22df8d4baafce7adb047b4764d357fd6341baab5 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Mon, 21 Oct 2024 15:46:01 +0200 Subject: [PATCH] feat: add ssh config for hydra --- hosts/nuos/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/nuos/configuration.nix b/hosts/nuos/configuration.nix index 7a36517..dcfa389 100644 --- a/hosts/nuos/configuration.nix +++ b/hosts/nuos/configuration.nix @@ -77,6 +77,15 @@ users = { "noa" = import ./home.nix; "root" = import ./root.nix; + "hydra" = { ... }: { + home.stateVersion = "24.11"; # Please read the comment before changing. + home.file = { + ".ssh/config".text = '' + Host 192.168.42.5 + User noa + ''; + }; + }; }; };