summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpennae <82953136+pennae@users.noreply.github.com>2022-09-12 20:47:05 +0200
committerGitHub <noreply@github.com>2022-09-12 20:47:05 +0200
commit070b3966fcb1f514a0e7ea4c7689561321ae3400 (patch)
tree72ff97ce431a296b60eb59549ed9bf8a70e5f129
parentac3e43ca8a4f65372657bd9b5c5a28b66921f189 (diff)
nixos/cachix-agent: fix type for host option
-rw-r--r--nixos/modules/services/system/cachix-agent/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/system/cachix-agent/default.nix b/nixos/modules/services/system/cachix-agent/default.nix
index 5b529c1789e2..aa3b2153422c 100644
--- a/nixos/modules/services/system/cachix-agent/default.nix
+++ b/nixos/modules/services/system/cachix-agent/default.nix
@@ -30,7 +30,7 @@ in {
};
host = mkOption {
- type = types.str;
+ type = types.nullOr types.str;
default = null;
description = lib.mdDoc "Cachix uri to use.";
};