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 + ''; + }; + }; }; };