nixos-config/nix/verify/modules/localCommands.nix
Ingolf Wagner 614a1d8e37
Some checks failed
Build all NixOS Configurations / nix build (push) Has been cancelled
add local command to verify
2024-09-15 07:04:59 +07:00

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.
'';
};
}