mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 08:00:06 +01:00
15 lines
232 B
Nix
15 lines
232 B
Nix
{ lib, config, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
options.testing.kubetest = {
|
|
defaultHeader = mkOption {
|
|
description = "Default test header";
|
|
type = types.lines;
|
|
default = ''
|
|
import pytest
|
|
'';
|
|
};
|
|
};
|
|
}
|