stockholm/old/modules/mors/retiolum.nix

22 lines
374 B
Nix
Raw Normal View History

2015-04-09 23:37:29 +00:00
{ config, pkgs, ... }:
{
imports = [
2015-07-13 11:39:49 +00:00
../tv/retiolum
2015-04-09 23:37:29 +00:00
];
2015-07-13 11:39:49 +00:00
tv.retiolum = {
2015-04-09 23:37:29 +00:00
enable = true;
2015-07-13 11:39:49 +00:00
hosts = <retiolum-hosts>;
2015-04-09 23:37:29 +00:00
privateKeyFile = "/etc/nixos/secrets/mors.retiolum.rsa_key.priv";
connectTo = [
"fastpoke"
"gum"
"ire"
];
};
networking.firewall.allowedTCPPorts = [ 655 ];
networking.firewall.allowedUDPPorts = [ 655 ];
}