1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
+ forward X11
+ ssh config
+ agent timeout
This commit is contained in:
Kierán Meinhardt
2018-10-06 10:39:04 +02:00
parent 9ba28fca7c
commit af92980f62
2 changed files with 14 additions and 4 deletions

8
dot/ssh.nix Normal file
View File

@@ -0,0 +1,8 @@
{ lib }:
with lib;
let huServer = name: ''
Host ${name}
HostName ${name}.informatik.hu-berlin.de
User ${(import ../secrets.nix).eduroam.identity}
'';
in strings.concatMapStringsSep "\n\n" huServer [ "rabe" "star" "gruenau" "gruenau1" "gruenau2" "gruenau3" "gruenau4" "gruenau5" "gruenau6" "gruenau7" "gruenau8" ]