nixos-config/nix/verify/modules/localCommands.nix

16 lines
249 B
Nix
Raw Normal View History

2024-09-15 01:32:21 +02:00
{ 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.
'';
};
}