fix: change publicKey type to string

This commit is contained in:
Daniel Phan 2021-11-01 08:28:01 +07:00
parent da5dffa056
commit a05a3e5900
No known key found for this signature in database
GPG key ID: A3556DCE587353FB

View file

@ -32,7 +32,7 @@ in
}; };
publicKey = lib.mkOption { publicKey = lib.mkOption {
type = types.nullOr types.path; type = types.nullOr types.str;
default = null; default = null;
description = '' description = ''
The public key to sign the derivations with. The public key to sign the derivations with.