summary refs log tree commit diff
path: root/nixos
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 /nixos
parentac3e43ca8a4f65372657bd9b5c5a28b66921f189 (diff)
downloadnixpkgs-070b3966fcb1f514a0e7ea4c7689561321ae3400.tar
nixpkgs-070b3966fcb1f514a0e7ea4c7689561321ae3400.tar.gz
nixpkgs-070b3966fcb1f514a0e7ea4c7689561321ae3400.tar.bz2
nixpkgs-070b3966fcb1f514a0e7ea4c7689561321ae3400.tar.lz
nixpkgs-070b3966fcb1f514a0e7ea4c7689561321ae3400.tar.xz
nixpkgs-070b3966fcb1f514a0e7ea4c7689561321ae3400.tar.zst
nixpkgs-070b3966fcb1f514a0e7ea4c7689561321ae3400.zip
nixos/cachix-agent: fix type for host option
Diffstat (limited to 'nixos')
-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 5b529c1789e..aa3b2153422 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.";
     };