mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 08:00:06 +01:00
20 lines
346 B
Nix
20 lines
346 B
Nix
|
|
{ config, lib, ... }:
|
||
|
|
|
||
|
|
with lib;
|
||
|
|
|
||
|
|
{
|
||
|
|
options._module.features = mkOption {
|
||
|
|
description = "List of features exposed by module";
|
||
|
|
type = types.listOf types.str;
|
||
|
|
default = [];
|
||
|
|
};
|
||
|
|
|
||
|
|
options.kubenix = {
|
||
|
|
project = mkOption {
|
||
|
|
description = "Name of the project";
|
||
|
|
type = types.str;
|
||
|
|
default = "kubenix";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|