stockholm/jeschli/2configs/retiolum.nix

27 lines
405 B
Nix
Raw Normal View History

2017-12-06 16:41:08 +00:00
{ config, pkgs, ... }:
{
krebs.tinc.retiolum = {
enable = true;
connectTo = [
"prism"
"gum"
"ni"
"dishfire"
2018-01-10 14:10:13 +00:00
"enklave"
2017-12-06 16:41:08 +00:00
];
};
nixpkgs.config.packageOverrides = pkgs: {
tinc = pkgs.tinc_pre;
};
2018-09-04 17:54:22 +00:00
networking.firewall.allowedTCPPorts = [ 80 655 ];
2018-01-10 14:10:13 +00:00
networking.firewall.allowedUDPPorts = [ 655 ];
2017-12-06 16:41:08 +00:00
environment.systemPackages = [
pkgs.tinc
];
}