From 070b3966fcb1f514a0e7ea4c7689561321ae3400 Mon Sep 17 00:00:00 2001 From: pennae <82953136+pennae@users.noreply.github.com> Date: Mon, 12 Sep 2022 20:47:05 +0200 Subject: [PATCH] nixos/cachix-agent: fix type for host option --- nixos/modules/services/system/cachix-agent/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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."; };