summaryrefslogtreecommitdiffstats
path: root/3modules
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-07-13 17:36:31 +0200
committertv <tv@shackspace.de>2015-07-13 17:47:49 +0200
commit0345c30b1b3c3b01ba5455a7fc6bee338c36052a (patch)
tree73cd25f1107480295823ca5f904362f98401e85a /3modules
parentc27bd8af5d8b0ef638d703ad8942ce2309785e2e (diff)
3 tv.*: use mkEnableOption
Diffstat (limited to '3modules')
-rw-r--r--3modules/tv/consul.nix8
-rw-r--r--3modules/tv/ejabberd.nix5
-rw-r--r--3modules/tv/git.nix7
-rw-r--r--3modules/tv/identity.nix8
-rw-r--r--3modules/tv/iptables.nix5
-rw-r--r--3modules/tv/nginx.nix6
-rw-r--r--3modules/tv/retiolum.nix6
-rw-r--r--3modules/tv/urlwatch.nix12
8 files changed, 12 insertions, 45 deletions
diff --git a/3modules/tv/consul.nix b/3modules/tv/consul.nix
index dc9a180d..48019845 100644
--- a/3modules/tv/consul.nix
+++ b/3modules/tv/consul.nix
@@ -21,12 +21,8 @@ let
};
api = {
- # TODO inherit (lib) api.options.enable; oder so
- enable = mkOption {
- type = types.bool;
- default = false;
- description = "enable tv.consul";
- };
+ enable = mkEnableOption "tv.consul";
+
dc = mkOption {
type = types.unspecified;
};
diff --git a/3modules/tv/ejabberd.nix b/3modules/tv/ejabberd.nix
index ffcc5cfb..e75c995a 100644
--- a/3modules/tv/ejabberd.nix
+++ b/3modules/tv/ejabberd.nix
@@ -11,10 +11,7 @@ let
};
api = {
- enable = mkOption {
- type = types.bool;
- default = false;
- };
+ enable = mkEnableOption "tv.ejabberd";
certFile = mkOption {
type = types.str;
diff --git a/3modules/tv/git.nix b/3modules/tv/git.nix
index 5adfe747..e19063fa 100644
--- a/3modules/tv/git.nix
+++ b/3modules/tv/git.nix
@@ -23,11 +23,8 @@ let
};
api = {
- enable = mkOption {
- type = types.bool;
- default = false;
- description = "Enable Git repository hosting.";
- };
+ enable = mkEnableOption "tv.git";
+
cgit = mkOption {
type = types.bool;
default = true;
diff --git a/3modules/tv/identity.nix b/3modules/tv/identity.nix
index 7cf90de0..c3c2f17b 100644
--- a/3modules/tv/identity.nix
+++ b/3modules/tv/identity.nix
@@ -1,9 +1,7 @@
{ lib, ... }:
with lib;
-
let
-
cfg = config.tv.identity;
out = {
@@ -12,10 +10,8 @@ let
};
api = {
- enable = mkOption {
- type = types.bool;
- default = false;
- };
+ enable = mkEnableOption "tv.identity";
+
self = mkOption {
type = types.unspecified;
};
diff --git a/3modules/tv/iptables.nix b/3modules/tv/iptables.nix
index 096b04e1..7b9edd38 100644
--- a/3modules/tv/iptables.nix
+++ b/3modules/tv/iptables.nix
@@ -11,10 +11,7 @@ let
};
api = {
- enable = mkOption {
- type = types.bool;
- default = false;
- };
+ enable = mkEnableOption "tv.iptables";
input-internet-accept-new-tcp = mkOption {
type = with types; listOf str;
diff --git a/3modules/tv/nginx.nix b/3modules/tv/nginx.nix
index d9d95be8..93cd88aa 100644
--- a/3modules/tv/nginx.nix
+++ b/3modules/tv/nginx.nix
@@ -11,11 +11,7 @@ let
};
api = {
- enable = mkOption {
- type = types.bool;
- default = false;
- description = "Enable nginx.";
- };
+ enable = mkEnableOption "tv.nginx";
retiolum-locations = mkOption {
type = with types; listOf (attrsOf str);
diff --git a/3modules/tv/retiolum.nix b/3modules/tv/retiolum.nix
index 7c78d712..8dc4197a 100644
--- a/3modules/tv/retiolum.nix
+++ b/3modules/tv/retiolum.nix
@@ -11,11 +11,7 @@ let
};
api = {
- enable = mkOption {
- type = types.bool;
- default = false;
- description = "Enable tinc daemon for Retiolum.";
- };
+ enable = mkEnableOption "tv.retiolum";
name = mkOption {
type = types.str;
diff --git a/3modules/tv/urlwatch.nix b/3modules/tv/urlwatch.nix
index d6e796ca..aed24785 100644
--- a/3modules/tv/urlwatch.nix
+++ b/3modules/tv/urlwatch.nix
@@ -7,11 +7,12 @@
with builtins;
with lib;
-
let
cfg = config.tv.urlwatch;
api = {
+ enable = mkEnableOption "tv.urlwatch";
+
dataDir = mkOption {
type = types.str;
default = "/var/lib/urlwatch";
@@ -19,15 +20,6 @@ let
Directory where the urlwatch service should store its state.
'';
};
- enable = mkOption {
- type = types.bool;
- default = false;
- description = ''
- Whether to enable the urlwatch service.
- If enabled, then create a timer that calls urlwatch and sends mails
- whenever something has changed or an error occurs.
- '';
- };
from = mkOption {
type = types.str;
default = "${cfg.user}@${config.networking.hostName}.retiolum";