@jaspermayone.com's dotfiles
at main 20 lines 378 B view raw
1# Bore tunnel client configuration 2{ 3 config, 4 lib, 5 pkgs, 6 ... 7}: 8 9{ 10 imports = [ ../modules/bore ]; 11 12 atelier.bore = { 13 enable = true; 14 serverAddr = "tun.hogwarts.channel"; 15 serverPort = 7000; 16 domain = "tun.hogwarts.channel"; 17 authTokenFile = 18 if pkgs.stdenv.isDarwin then "/Users/jsp/.config/bore/token" else "/home/jsp/.config/bore/token"; 19 }; 20}