nix-da/options/default.nix

7 lines
108 B
Nix

{ lib, ... }:
{
options.custom.pubKey = lib.mkOption {
type = lib.types.str;
default = "";
};
}