aboutsummaryrefslogtreecommitdiff
path: root/modules/private/databases
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-10-18 19:43:39 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2019-10-18 19:43:39 +0200
commit8415083eb6acc343dfa404dbbc12fa0171a48a20 (patch)
treed83f54c99763ae49076bf3071449595b6ccae133 /modules/private/databases
parent8fa7ff2c63fb0722144bc90837512d9f8b8c929d (diff)
downloadNix-8415083eb6acc343dfa404dbbc12fa0171a48a20.tar.gz
Nix-8415083eb6acc343dfa404dbbc12fa0171a48a20.tar.zst
Nix-8415083eb6acc343dfa404dbbc12fa0171a48a20.zip
Add new machine to nixops
Diffstat (limited to 'modules/private/databases')
-rw-r--r--modules/private/databases/mariadb.nix2
-rw-r--r--modules/private/databases/openldap/default.nix2
-rw-r--r--modules/private/databases/postgresql.nix2
-rw-r--r--modules/private/databases/redis.nix2
4 files changed, 4 insertions, 4 deletions
diff --git a/modules/private/databases/mariadb.nix b/modules/private/databases/mariadb.nix
index a7239c0..4293f02 100644
--- a/modules/private/databases/mariadb.nix
+++ b/modules/private/databases/mariadb.nix
@@ -5,7 +5,7 @@ in {
5 options.myServices.databases = { 5 options.myServices.databases = {
6 mariadb = { 6 mariadb = {
7 enable = lib.mkOption { 7 enable = lib.mkOption {
8 default = cfg.enable; 8 default = false;
9 example = true; 9 example = true;
10 description = "Whether to enable mariadb database"; 10 description = "Whether to enable mariadb database";
11 type = lib.types.bool; 11 type = lib.types.bool;
diff --git a/modules/private/databases/openldap/default.nix b/modules/private/databases/openldap/default.nix
index f09113a..9f72b29 100644
--- a/modules/private/databases/openldap/default.nix
+++ b/modules/private/databases/openldap/default.nix
@@ -48,7 +48,7 @@ in
48 options.myServices.databases = { 48 options.myServices.databases = {
49 openldap = { 49 openldap = {
50 enable = lib.mkOption { 50 enable = lib.mkOption {
51 default = cfg.enable; 51 default = false;
52 example = true; 52 example = true;
53 description = "Whether to enable ldap"; 53 description = "Whether to enable ldap";
54 type = lib.types.bool; 54 type = lib.types.bool;
diff --git a/modules/private/databases/postgresql.nix b/modules/private/databases/postgresql.nix
index 911a6d1..6d1901d 100644
--- a/modules/private/databases/postgresql.nix
+++ b/modules/private/databases/postgresql.nix
@@ -5,7 +5,7 @@ in {
5 options.myServices.databases = { 5 options.myServices.databases = {
6 postgresql = { 6 postgresql = {
7 enable = lib.mkOption { 7 enable = lib.mkOption {
8 default = cfg.enable; 8 default = false;
9 example = true; 9 example = true;
10 description = "Whether to enable postgresql database"; 10 description = "Whether to enable postgresql database";
11 type = lib.types.bool; 11 type = lib.types.bool;
diff --git a/modules/private/databases/redis.nix b/modules/private/databases/redis.nix
index 1ba6eed..c23ffec 100644
--- a/modules/private/databases/redis.nix
+++ b/modules/private/databases/redis.nix
@@ -4,7 +4,7 @@ let
4in { 4in {
5 options.myServices.databases.redis = { 5 options.myServices.databases.redis = {
6 enable = lib.mkOption { 6 enable = lib.mkOption {
7 default = cfg.enable; 7 default = false;
8 example = true; 8 example = true;
9 description = "Whether to enable redis database"; 9 description = "Whether to enable redis database";
10 type = lib.types.bool; 10 type = lib.types.bool;