From 39ee11a4dbb19fa74b342934fcf6fe5b555d9152 Mon Sep 17 00:00:00 2001 From: Swarsel Date: Mon, 5 Aug 2024 01:47:13 +0200 Subject: [PATCH] feat: add default user for vbc ssh hosts --- SwarselSystems.org | 9 +++++++++ profiles/optional/home/work.nix | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/SwarselSystems.org b/SwarselSystems.org index 8c5a345..8382b53 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -8063,6 +8063,15 @@ Currently, I am too lazy to explain every option here, but most of it is very se teams-for-linux google-chrome ]; + + programs.ssh = { + matchBlocks = { + "*.vbc.ac.at" = { + user = "dc_adm_schwarzaeugl"; + }; + }; + }; + } #+end_src diff --git a/profiles/optional/home/work.nix b/profiles/optional/home/work.nix index beb6071..52e81ec 100644 --- a/profiles/optional/home/work.nix +++ b/profiles/optional/home/work.nix @@ -5,4 +5,13 @@ teams-for-linux google-chrome ]; + + programs.ssh = { + matchBlocks = { + "*.vbc.ac.at" = { + user = "dc_adm_schwarzaeugl"; + }; + }; + }; + }