From b02bf486e3cafcb2eb9c46cd51e8f1fe57dec982 Mon Sep 17 00:00:00 2001 From: Erwin Boskma Date: Fri, 24 Jan 2025 08:49:37 +0100 Subject: [PATCH] Update some work hostnames --- home-manager/modules/git/default.nix | 6 +----- home-manager/modules/ssh/default.nix | 8 ++------ 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/home-manager/modules/git/default.nix b/home-manager/modules/git/default.nix index bcb2b85..4d0b376 100644 --- a/home-manager/modules/git/default.nix +++ b/home-manager/modules/git/default.nix @@ -99,14 +99,10 @@ in extraConfig = { credential = { helper = [ - "cache --timeout 900" + "cache --timeout 21600" "${pkgs.git-credential-oauth}/bin/git-credential-oauth" ]; - "https://dev.azure.com" = { - useHttpPath = true; - }; - "https://git.datarift.nl" = { oauthClientId = "a4792ccc-144e-407e-86c9-5e7d8d9c3269"; oauthAuthURL = "/login/oauth/authorize"; diff --git a/home-manager/modules/ssh/default.nix b/home-manager/modules/ssh/default.nix index 09b90f0..3ce601b 100644 --- a/home-manager/modules/ssh/default.nix +++ b/home-manager/modules/ssh/default.nix @@ -76,7 +76,7 @@ in forwardAgent = true; }; - "repohost.bedum.horus.nu" = { + "repohost.internal.horus.nu" = { forwardAgent = true; extraOptions = { ControlMaster = "auto"; @@ -84,17 +84,13 @@ in }; }; - "gitea.bedum.horus.nu" = { - forwardAgent = true; - }; - monitoring = { hostname = "monitoring.internal.horus.nu"; identityFile = horusKey; }; buildserver2 = { - hostname = "buildserver2.bedum.horus.nu"; + hostname = "buildserver2.internal.horus.nu"; user = "horus"; identityFile = horusKey; };