diff options
author | tv <tv@shackspace.de> | 2015-06-22 20:11:02 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-06-22 20:11:02 +0200 |
commit | 68a968ac1b1a077494efb56e18c83e79fe0bae7f (patch) | |
tree | 385aed841a2d9f7320ca35a3ce67093cb5b8470e /modules/rmdir/default.nix | |
parent | f825bf5e9eb43c0c3c5858b8ca60f2c4e5d66921 (diff) |
tv retiolum: split module into options and config
Diffstat (limited to 'modules/rmdir/default.nix')
-rw-r--r-- | modules/rmdir/default.nix | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/modules/rmdir/default.nix b/modules/rmdir/default.nix index 9879fadfa..346618a04 100644 --- a/modules/rmdir/default.nix +++ b/modules/rmdir/default.nix @@ -15,7 +15,6 @@ in ../tv/base-cac-CentOS-7-64bit.nix ../tv/exim-smarthost.nix ../tv/git/public.nix - ../tv/retiolum.nix ../tv/sanitize.nix { imports = [ ../tv/iptables ]; @@ -33,6 +32,20 @@ in ]; }; } + { + imports = [ ../tv/retiolum ]; + tv.retiolum = { + enable = true; + hosts = <retiolum-hosts>; + connectTo = [ + "cd" + "mkdir" + "fastpoke" + "pigstarter" + "ire" + ]; + }; + } ]; nix.maxJobs = 1; @@ -74,18 +87,5 @@ in permitRootLogin = "yes"; }; - services.retiolum = { - enable = true; - hosts = <retiolum-hosts>; - privateKeyFile = "/etc/tinc/retiolum/rsa_key.priv"; - connectTo = [ - "cd" - "rmdir" - "fastpoke" - "pigstarter" - "ire" - ]; - }; - sound.enable = false; } |