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

nixos/cachix-agent: fix type for host option

Changed files
+1 -1
nixos
modules
services
system
cachix-agent
+1 -1
nixos/modules/services/system/cachix-agent/default.nix
···
};
host = mkOption {
-
type = types.str;
default = null;
description = lib.mdDoc "Cachix uri to use.";
};
···
};
host = mkOption {
+
type = types.nullOr types.str;
default = null;
description = lib.mdDoc "Cachix uri to use.";
};