summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/backup
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-11-30 02:49:30 +0100
committerGitHub <noreply@github.com>2023-11-30 02:49:30 +0100
commitfeeae486deb50aab190d1dd46626a6c5f9f3f698 (patch)
tree3d818b400b9a6d5654629023fa2f2380e2f3aa08 /nixos/modules/services/backup
parentbabc0d5e96871971a5d9cf4c4a2a68edba413dc4 (diff)
parent0a37316d6cfea44280f4470b6867a711a24606bd (diff)
Merge pull request #261702 from h7x4/replace-mkoption-with-mkpackageoption
treewide: use `mkPackageOption`
Diffstat (limited to 'nixos/modules/services/backup')
-rw-r--r--nixos/modules/services/backup/postgresql-wal-receiver.nix8
-rw-r--r--nixos/modules/services/backup/restic-rest-server.nix7
-rw-r--r--nixos/modules/services/backup/restic.nix9
-rw-r--r--nixos/modules/services/backup/zrepl.nix7
4 files changed, 5 insertions, 26 deletions
diff --git a/nixos/modules/services/backup/postgresql-wal-receiver.nix b/nixos/modules/services/backup/postgresql-wal-receiver.nix
index 773dc0ba447d..332a32d37052 100644
--- a/nixos/modules/services/backup/postgresql-wal-receiver.nix
+++ b/nixos/modules/services/backup/postgresql-wal-receiver.nix
@@ -5,12 +5,8 @@ with lib;
let
receiverSubmodule = {
options = {
- postgresqlPackage = mkOption {
- type = types.package;
- example = literalExpression "pkgs.postgresql_15";
- description = lib.mdDoc ''
- PostgreSQL package to use.
- '';
+ postgresqlPackage = mkPackageOption pkgs "postgresql" {
+ example = "postgresql_15";
};
directory = mkOption {
diff --git a/nixos/modules/services/backup/restic-rest-server.nix b/nixos/modules/services/backup/restic-rest-server.nix
index 37a6150c99d3..105a05caf304 100644
--- a/nixos/modules/services/backup/restic-rest-server.nix
+++ b/nixos/modules/services/backup/restic-rest-server.nix
@@ -57,12 +57,7 @@ in
'';
};
- package = mkOption {
- default = pkgs.restic-rest-server;
- defaultText = literalExpression "pkgs.restic-rest-server";
- type = types.package;
- description = lib.mdDoc "Restic REST server package to use.";
- };
+ package = mkPackageOption pkgs "restic-rest-server" { };
};
config = mkIf cfg.enable {
diff --git a/nixos/modules/services/backup/restic.nix b/nixos/modules/services/backup/restic.nix
index 87595f39796d..e3eb504e0adf 100644
--- a/nixos/modules/services/backup/restic.nix
+++ b/nixos/modules/services/backup/restic.nix
@@ -245,14 +245,7 @@ in
'';
};
- package = mkOption {
- type = types.package;
- default = pkgs.restic;
- defaultText = literalExpression "pkgs.restic";
- description = lib.mdDoc ''
- Restic package to use.
- '';
- };
+ package = mkPackageOption pkgs "restic" { };
createWrapper = lib.mkOption {
type = lib.types.bool;
diff --git a/nixos/modules/services/backup/zrepl.nix b/nixos/modules/services/backup/zrepl.nix
index 1d3afa3eda05..8475a347429e 100644
--- a/nixos/modules/services/backup/zrepl.nix
+++ b/nixos/modules/services/backup/zrepl.nix
@@ -13,12 +13,7 @@ in
services.zrepl = {
enable = mkEnableOption (lib.mdDoc "zrepl");
- package = mkOption {
- type = types.package;
- default = pkgs.zrepl;
- defaultText = literalExpression "pkgs.zrepl";
- description = lib.mdDoc "Which package to use for zrepl";
- };
+ package = mkPackageOption pkgs "zrepl" { };
settings = mkOption {
default = { };