18 lines
278 B
Nix
18 lines
278 B
Nix
{ 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";
|
|
}
|