feat: work qol

This commit is contained in:
Leon Schwarzäugl 2025-02-25 14:02:57 +01:00
parent a9eadbe2ed
commit c8e4493b8a
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
4 changed files with 58 additions and 10 deletions

View file

@ -5,6 +5,7 @@ _:
forwardAgent = true;
extraConfig = ''
SetEnv TERM=xterm-256color
ServerAliveInterval 20
'';
matchBlocks = {
# Local machines

View file

@ -21,6 +21,11 @@
git.userEmail = "leon.schwarzaeugl@imba.oeaw.ac.at";
zsh = {
shellAliases = {
dssh = "ssh -l dc_adm_schwarzaeugl";
cssh = "ssh -l cl_adm_schwarzaeugl";
wssh = "ssh -l ws_adm_schwarzaeugl";
};
cdpath = [
"~/Documents/Work"
];
@ -33,23 +38,34 @@
};
};
ssh = {
matchBlocks = {
"uc" = {
hostname = "uc.clip.vbc.ac.at";
user = "stack";
};
"uc-stg" = {
"uc.stg" = {
hostname = "uc.staging.clip.vbc.ac.at";
user = "stack";
};
"uc.staging" = {
hostname = "uc.staging.clip.vbc.ac.at";
user = "stack";
};
"uc.dev" = {
hostname = "uc.dev.clip.vbc.ac.at";
user = "stack";
};
"cbe" = {
hostname = "cbe.vbc.ac.at";
user = "dc_adm_schwarzaeugl";
};
"cbe-stg" = {
hostname = "cbe.staging.vbc.ac.at";
"cbe.stg" = {
hostname = "cbe.staging.clip.vbc.ac.at";
user = "dc_adm_schwarzaeugl";
};
"cbe.staging" = {
hostname = "cbe.staging.clip.vbc.ac.at";
user = "dc_adm_schwarzaeugl";
};
"*.vbc.ac.at" = {

View file

@ -42,7 +42,14 @@ in
};
};
networking.firewall.trustedInterfaces = [ "virbr0" ];
networking = {
firewall.trustedInterfaces = [ "virbr0" ];
search = [
"vbc.ac.at"
"clip.vbc.ac.at"
"imp.univie.ac.at"
];
};
virtualisation = {
docker.enable = true;