16 lines
249 B
Nix
16 lines
249 B
Nix
|
{ lib, ... }:
|
||
|
with lib;
|
||
|
with types;
|
||
|
{
|
||
|
|
||
|
options.verify.localCommands = mkOption {
|
||
|
default = { };
|
||
|
type = attrsOf str;
|
||
|
description = ''
|
||
|
service -> command
|
||
|
command to run on local machine to test remote server.
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
}
|