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