mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 00:57:22 +01:00
feat: work qol
This commit is contained in:
parent
a9eadbe2ed
commit
c8e4493b8a
4 changed files with 58 additions and 10 deletions
|
|
@ -5,6 +5,7 @@ _:
|
|||
forwardAgent = true;
|
||||
extraConfig = ''
|
||||
SetEnv TERM=xterm-256color
|
||||
ServerAliveInterval 20
|
||||
'';
|
||||
matchBlocks = {
|
||||
# Local machines
|
||||
|
|
|
|||
|
|
@ -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" = {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue