about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-09-18T14·35+0300
committertazjin <mail@tazj.in>2021-09-18T14·38+0000
commit86a114ac458861b60ae67252ffe056f4cfc2f328 (patch)
treea036346058b3cc92c872f638735ed7436ba48f05
parent98e4d4b18f57dcc3729f7b73cfe105b2af1c3494 (diff)
fix(ops/restic): types.string -> types.str r/2889
I can never remember which is which.

Change-Id: I69b8235862b8c5b49030a74bfca25aaa113273b7
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3582
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
-rw-r--r--ops/modules/restic.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/ops/modules/restic.nix b/ops/modules/restic.nix
index f107609586..3d5ec30c1c 100644
--- a/ops/modules/restic.nix
+++ b/ops/modules/restic.nix
@@ -9,7 +9,7 @@ let
   description = "Restic backups to GCS";
   mkStringOption = default: lib.mkOption {
     inherit default;
-    type = lib.types.string;
+    type = lib.types.str;
   };
 in {
   options.services.depot.restic = {
@@ -21,12 +21,12 @@ in {
 
     paths = with lib; mkOption {
       description = "Directories that should be backed up";
-      type = types.listOf types.string;
+      type = types.listOf types.str;
     };
 
     exclude = with lib; mkOption {
       description = "Files that should be excluded from backups";
-      type = types.listOf types.string;
+      type = types.listOf types.str;
     };
   };