Merge pull request #190959 from pennae/cachix-host-type

nixos/cachix-agent: fix type for host option
This commit is contained in:
Domen Kožar 2022-09-13 10:08:00 +01:00 committed by GitHub
commit 2f22b267c5
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.";
};