summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/databases
diff options
context:
space:
mode:
authorh7x4 <h7x4@nani.wtf>2023-11-27 01:19:27 +0100
committerh7x4 <h7x4@nani.wtf>2023-11-27 01:28:36 +0100
commit0a37316d6cfea44280f4470b6867a711a24606bd (patch)
tree0dce949073e1f1647975a2ec3adfb7facdbb8ac4 /nixos/modules/services/databases
parent9cc575741df943328b2dbbf6ef7c5dfd49c1bbe0 (diff)
treewide: use `mkPackageOption`
This commit replaces a lot of usages of `mkOption` with the package type, to be `mkPackageOption`, in order to reduce the amount of code.
Diffstat (limited to 'nixos/modules/services/databases')
-rw-r--r--nixos/modules/services/databases/aerospike.nix7
-rw-r--r--nixos/modules/services/databases/cassandra.nix11
-rw-r--r--nixos/modules/services/databases/clickhouse.nix9
-rw-r--r--nixos/modules/services/databases/cockroachdb.nix9
-rw-r--r--nixos/modules/services/databases/couchdb.nix9
-rw-r--r--nixos/modules/services/databases/firebird.nix10
-rw-r--r--nixos/modules/services/databases/hbase-standalone.nix10
-rw-r--r--nixos/modules/services/databases/influxdb.nix7
-rw-r--r--nixos/modules/services/databases/influxdb2.nix8
-rw-r--r--nixos/modules/services/databases/monetdb.nix7
-rw-r--r--nixos/modules/services/databases/mongodb.nix9
-rw-r--r--nixos/modules/services/databases/neo4j.nix9
-rw-r--r--nixos/modules/services/databases/openldap.nix9
-rw-r--r--nixos/modules/services/databases/opentsdb.nix9
-rw-r--r--nixos/modules/services/databases/pgbouncer.nix9
-rw-r--r--nixos/modules/services/databases/pgmanage.nix9
-rw-r--r--nixos/modules/services/databases/postgresql.nix8
-rw-r--r--nixos/modules/services/databases/redis.nix7
-rw-r--r--nixos/modules/services/databases/surrealdb.nix9
-rw-r--r--nixos/modules/services/databases/victoriametrics.nix9
20 files changed, 28 insertions, 146 deletions
diff --git a/nixos/modules/services/databases/aerospike.nix b/nixos/modules/services/databases/aerospike.nix
index 21df4cd0577b..373c8f4bffb0 100644
--- a/nixos/modules/services/databases/aerospike.nix
+++ b/nixos/modules/services/databases/aerospike.nix
@@ -41,12 +41,7 @@ in
services.aerospike = {
enable = mkEnableOption (lib.mdDoc "Aerospike server");
- package = mkOption {
- default = pkgs.aerospike;
- defaultText = literalExpression "pkgs.aerospike";
- type = types.package;
- description = lib.mdDoc "Which Aerospike derivation to use";
- };
+ package = mkPackageOption pkgs "aerospike" { };
workDir = mkOption {
type = types.str;
diff --git a/nixos/modules/services/databases/cassandra.nix b/nixos/modules/services/databases/cassandra.nix
index cd816ffaf0dd..adf7213dd13f 100644
--- a/nixos/modules/services/databases/cassandra.nix
+++ b/nixos/modules/services/databases/cassandra.nix
@@ -11,6 +11,7 @@ let
recursiveUpdate
mdDoc
mkEnableOption
+ mkPackageOption
mkIf
mkOption
types
@@ -155,14 +156,8 @@ in
'';
};
- package = mkOption {
- type = types.package;
- default = pkgs.cassandra;
- defaultText = literalExpression "pkgs.cassandra";
- example = literalExpression "pkgs.cassandra_3_11";
- description = mdDoc ''
- The Apache Cassandra package to use.
- '';
+ package = mkPackageOption pkgs "cassandra" {
+ example = "cassandra_3_11";
};
jvmOpts = mkOption {
diff --git a/nixos/modules/services/databases/clickhouse.nix b/nixos/modules/services/databases/clickhouse.nix
index dca352ef72fe..288046677721 100644
--- a/nixos/modules/services/databases/clickhouse.nix
+++ b/nixos/modules/services/databases/clickhouse.nix
@@ -13,14 +13,7 @@ with lib;
enable = mkEnableOption (lib.mdDoc "ClickHouse database server");
- package = mkOption {
- type = types.package;
- default = pkgs.clickhouse;
- defaultText = lib.literalExpression "pkgs.clickhouse";
- description = lib.mdDoc ''
- ClickHouse package to use.
- '';
- };
+ package = mkPackageOption pkgs "clickhouse" { };
};
diff --git a/nixos/modules/services/databases/cockroachdb.nix b/nixos/modules/services/databases/cockroachdb.nix
index ff77d30588fe..789f086158db 100644
--- a/nixos/modules/services/databases/cockroachdb.nix
+++ b/nixos/modules/services/databases/cockroachdb.nix
@@ -145,13 +145,8 @@ in
'';
};
- package = mkOption {
- type = types.package;
- default = pkgs.cockroachdb;
- defaultText = literalExpression "pkgs.cockroachdb";
- description = lib.mdDoc ''
- The CockroachDB derivation to use for running the service.
-
+ package = mkPackageOption pkgs "cockroachdb" {
+ extraDescription = ''
This would primarily be useful to enable Enterprise Edition features
in your own custom CockroachDB build (Nixpkgs CockroachDB binaries
only contain open source features and open source code).
diff --git a/nixos/modules/services/databases/couchdb.nix b/nixos/modules/services/databases/couchdb.nix
index bfecfbb3664f..72212c390413 100644
--- a/nixos/modules/services/databases/couchdb.nix
+++ b/nixos/modules/services/databases/couchdb.nix
@@ -36,14 +36,7 @@ in {
enable = mkEnableOption (lib.mdDoc "CouchDB Server");
- package = mkOption {
- type = types.package;
- default = pkgs.couchdb3;
- defaultText = literalExpression "pkgs.couchdb3";
- description = lib.mdDoc ''
- CouchDB package to use.
- '';
- };
+ package = mkPackageOption pkgs "couchdb3" { };
adminUser = mkOption {
type = types.str;
diff --git a/nixos/modules/services/databases/firebird.nix b/nixos/modules/services/databases/firebird.nix
index 3927c81d953d..36c12eaaf5f1 100644
--- a/nixos/modules/services/databases/firebird.nix
+++ b/nixos/modules/services/databases/firebird.nix
@@ -42,13 +42,9 @@ in
enable = mkEnableOption (lib.mdDoc "the Firebird super server");
- package = mkOption {
- default = pkgs.firebird;
- defaultText = literalExpression "pkgs.firebird";
- type = types.package;
- example = literalExpression "pkgs.firebird_3";
- description = lib.mdDoc ''
- Which Firebird package to be installed: `pkgs.firebird_3`
+ package = mkPackageOption pkgs "firebird" {
+ example = "firebird_3";
+ extraDescription = ''
For SuperServer use override: `pkgs.firebird_3.override { superServer = true; };`
'';
};
diff --git a/nixos/modules/services/databases/hbase-standalone.nix b/nixos/modules/services/databases/hbase-standalone.nix
index 1ee73ec8d1ff..08ae7625d50a 100644
--- a/nixos/modules/services/databases/hbase-standalone.nix
+++ b/nixos/modules/services/databases/hbase-standalone.nix
@@ -46,15 +46,7 @@ in {
Do not use this configuration for production nor for evaluating HBase performance.
'');
- package = mkOption {
- type = types.package;
- default = pkgs.hbase;
- defaultText = literalExpression "pkgs.hbase";
- description = lib.mdDoc ''
- HBase package to use.
- '';
- };
-
+ package = mkPackageOption pkgs "hbase" { };
user = mkOption {
type = types.str;
diff --git a/nixos/modules/services/databases/influxdb.nix b/nixos/modules/services/databases/influxdb.nix
index b3361d2014ca..34b4139e7c58 100644
--- a/nixos/modules/services/databases/influxdb.nix
+++ b/nixos/modules/services/databases/influxdb.nix
@@ -116,12 +116,7 @@ in
type = types.bool;
};
- package = mkOption {
- default = pkgs.influxdb;
- defaultText = literalExpression "pkgs.influxdb";
- description = lib.mdDoc "Which influxdb derivation to use";
- type = types.package;
- };
+ package = mkPackageOption pkgs "influxdb" { };
user = mkOption {
default = "influxdb";
diff --git a/nixos/modules/services/databases/influxdb2.nix b/nixos/modules/services/databases/influxdb2.nix
index 3740cd01b5dc..2a67d87d4bbb 100644
--- a/nixos/modules/services/databases/influxdb2.nix
+++ b/nixos/modules/services/databases/influxdb2.nix
@@ -19,6 +19,7 @@ let
mapAttrsToList
mdDoc
mkEnableOption
+ mkPackageOption
mkIf
mkOption
nameValuePair
@@ -278,12 +279,7 @@ in
services.influxdb2 = {
enable = mkEnableOption (mdDoc "the influxdb2 server");
- package = mkOption {
- default = pkgs.influxdb2-server;
- defaultText = literalExpression "pkgs.influxdb2";
- description = mdDoc "influxdb2 derivation to use.";
- type = types.package;
- };
+ package = mkPackageOption pkgs "influxdb2" { };
settings = mkOption {
default = { };
diff --git a/nixos/modules/services/databases/monetdb.nix b/nixos/modules/services/databases/monetdb.nix
index 5573b530a913..1dddeda0959c 100644
--- a/nixos/modules/services/databases/monetdb.nix
+++ b/nixos/modules/services/databases/monetdb.nix
@@ -14,12 +14,7 @@ in {
enable = mkEnableOption (lib.mdDoc "the MonetDB database server");
- package = mkOption {
- type = types.package;
- default = pkgs.monetdb;
- defaultText = literalExpression "pkgs.monetdb";
- description = lib.mdDoc "MonetDB package to use.";
- };
+ package = mkPackageOption pkgs "monetdb" { };
user = mkOption {
type = types.str;
diff --git a/nixos/modules/services/databases/mongodb.nix b/nixos/modules/services/databases/mongodb.nix
index 8f3be1492e9e..f10364bc76c1 100644
--- a/nixos/modules/services/databases/mongodb.nix
+++ b/nixos/modules/services/databases/mongodb.nix
@@ -31,14 +31,7 @@ in
enable = mkEnableOption (lib.mdDoc "the MongoDB server");
- package = mkOption {
- default = pkgs.mongodb;
- defaultText = literalExpression "pkgs.mongodb";
- type = types.package;
- description = lib.mdDoc ''
- Which MongoDB derivation to use.
- '';
- };
+ package = mkPackageOption pkgs "mongodb" { };
user = mkOption {
type = types.str;
diff --git a/nixos/modules/services/databases/neo4j.nix b/nixos/modules/services/databases/neo4j.nix
index 090502424028..56b916ee3758 100644
--- a/nixos/modules/services/databases/neo4j.nix
+++ b/nixos/modules/services/databases/neo4j.nix
@@ -174,14 +174,7 @@ in {
'';
};
- package = mkOption {
- type = types.package;
- default = pkgs.neo4j;
- defaultText = literalExpression "pkgs.neo4j";
- description = lib.mdDoc ''
- Neo4j package to use.
- '';
- };
+ package = mkPackageOption pkgs "neo4j" { };
readOnly = mkOption {
type = types.bool;
diff --git a/nixos/modules/services/databases/openldap.nix b/nixos/modules/services/databases/openldap.nix
index cba3442023cb..a7a0909f55e1 100644
--- a/nixos/modules/services/databases/openldap.nix
+++ b/nixos/modules/services/databases/openldap.nix
@@ -91,13 +91,8 @@ in {
description = lib.mdDoc "Whether to enable the ldap server.";
};
- package = mkOption {
- type = types.package;
- default = pkgs.openldap;
- defaultText = literalExpression "pkgs.openldap";
- description = lib.mdDoc ''
- OpenLDAP package to use.
-
+ package = mkPackageOption pkgs "openldap" {
+ extraDescription = ''
This can be used to, for example, set an OpenLDAP package
with custom overrides to enable modules or other
functionality.
diff --git a/nixos/modules/services/databases/opentsdb.nix b/nixos/modules/services/databases/opentsdb.nix
index 288b716fce03..25f413db809f 100644
--- a/nixos/modules/services/databases/opentsdb.nix
+++ b/nixos/modules/services/databases/opentsdb.nix
@@ -17,14 +17,7 @@ in {
enable = mkEnableOption (lib.mdDoc "OpenTSDB");
- package = mkOption {
- type = types.package;
- default = pkgs.opentsdb;
- defaultText = literalExpression "pkgs.opentsdb";
- description = lib.mdDoc ''
- OpenTSDB package to use.
- '';
- };
+ package = mkPackageOption pkgs "opentsdb" { };
user = mkOption {
type = types.str;
diff --git a/nixos/modules/services/databases/pgbouncer.nix b/nixos/modules/services/databases/pgbouncer.nix
index 1aec03c114d1..65b287e84442 100644
--- a/nixos/modules/services/databases/pgbouncer.nix
+++ b/nixos/modules/services/databases/pgbouncer.nix
@@ -82,14 +82,7 @@ in {
enable = mkEnableOption (lib.mdDoc "PostgreSQL connection pooler");
- package = mkOption {
- type = types.package;
- default = pkgs.pgbouncer;
- defaultText = literalExpression "pkgs.pgbouncer";
- description = lib.mdDoc ''
- The pgbouncer package to use.
- '';
- };
+ package = mkPackageOption pkgs "pgbouncer" { };
openFirewall = mkOption {
type = types.bool;
diff --git a/nixos/modules/services/databases/pgmanage.nix b/nixos/modules/services/databases/pgmanage.nix
index a0933a5ffc45..4b963aee4640 100644
--- a/nixos/modules/services/databases/pgmanage.nix
+++ b/nixos/modules/services/databases/pgmanage.nix
@@ -46,14 +46,7 @@ in {
options.services.pgmanage = {
enable = mkEnableOption (lib.mdDoc "PostgreSQL Administration for the web");
- package = mkOption {
- type = types.package;
- default = pkgs.pgmanage;
- defaultText = literalExpression "pkgs.pgmanage";
- description = lib.mdDoc ''
- The pgmanage package to use.
- '';
- };
+ package = mkPackageOption pkgs "pgmanage" { };
connections = mkOption {
type = types.attrsOf types.str;
diff --git a/nixos/modules/services/databases/postgresql.nix b/nixos/modules/services/databases/postgresql.nix
index d69ffff7b47b..690f2d85a4c9 100644
--- a/nixos/modules/services/databases/postgresql.nix
+++ b/nixos/modules/services/databases/postgresql.nix
@@ -53,12 +53,8 @@ in
enableJIT = mkEnableOption (lib.mdDoc "JIT support");
- package = mkOption {
- type = types.package;
- example = literalExpression "pkgs.postgresql_15";
- description = lib.mdDoc ''
- PostgreSQL package to use.
- '';
+ package = mkPackageOption pkgs "postgresql" {
+ example = "postgresql_15";
};
port = mkOption {
diff --git a/nixos/modules/services/databases/redis.nix b/nixos/modules/services/databases/redis.nix
index 315a0282cd73..7c7e4884a59c 100644
--- a/nixos/modules/services/databases/redis.nix
+++ b/nixos/modules/services/databases/redis.nix
@@ -54,12 +54,7 @@ in {
options = {
services.redis = {
- package = mkOption {
- type = types.package;
- default = pkgs.redis;
- defaultText = literalExpression "pkgs.redis";
- description = lib.mdDoc "Which Redis derivation to use.";
- };
+ package = mkPackageOption pkgs "redis" { };
vmOverCommit = mkEnableOption (lib.mdDoc ''
setting of vm.overcommit_memory to 1
diff --git a/nixos/modules/services/databases/surrealdb.nix b/nixos/modules/services/databases/surrealdb.nix
index e1a1faed1f8f..55216d022d1c 100644
--- a/nixos/modules/services/databases/surrealdb.nix
+++ b/nixos/modules/services/databases/surrealdb.nix
@@ -10,14 +10,7 @@ in {
services.surrealdb = {
enable = mkEnableOption (lib.mdDoc "SurrealDB, a scalable, distributed, collaborative, document-graph database, for the realtime web");
- package = mkOption {
- default = pkgs.surrealdb;
- defaultText = literalExpression "pkgs.surrealdb";
- type = types.package;
- description = lib.mdDoc ''
- Which surrealdb derivation to use.
- '';
- };
+ package = mkPackageOption pkgs "surrealdb" { };
dbPath = mkOption {
type = types.str;
diff --git a/nixos/modules/services/databases/victoriametrics.nix b/nixos/modules/services/databases/victoriametrics.nix
index 638066a42dbd..0ad2028c95b0 100644
--- a/nixos/modules/services/databases/victoriametrics.nix
+++ b/nixos/modules/services/databases/victoriametrics.nix
@@ -3,14 +3,7 @@ let cfg = config.services.victoriametrics; in
{
options.services.victoriametrics = with lib; {
enable = mkEnableOption (lib.mdDoc "victoriametrics");
- package = mkOption {
- type = types.package;
- default = pkgs.victoriametrics;
- defaultText = literalExpression "pkgs.victoriametrics";
- description = lib.mdDoc ''
- The VictoriaMetrics distribution to use.
- '';
- };
+ package = mkPackageOption pkgs "victoriametrics" { };
listenAddress = mkOption {
default = ":8428";
type = types.str;