7 lines
108 B
Nix
7 lines
108 B
Nix
{ lib, ... }:
|
|
{
|
|
options.custom.pubKey = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "";
|
|
};
|
|
}
|