blob: d2bb9e6cfe0d4281c9bad685fd607b101bf7ce80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ config, lib, ... }:
with lib;
{
krebs.retiolum = {
enable = true;
connectTo = filter (ne config.krebs.build.host.name) [
"gum"
"prism"
"echelon"
"cd"
"ire"
];
};
tv.iptables.input-internet-accept-new-tcp = singleton "tinc";
}
|