nixos/cachix-agent: fix type for host option

This commit is contained in:
pennae 2022-09-12 20:47:05 +02:00 committed by GitHub
parent ac3e43ca8a
commit 070b3966fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,7 @@ in {
};
host = mkOption {
type = types.str;
type = types.nullOr types.str;
default = null;
description = lib.mdDoc "Cachix uri to use.";
};