This commit is contained in:
Gene Liverman 2026-03-11 00:52:36 -04:00 committed by GitHub
commit b102c04663
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,5 @@
{ ... }: {
imports = [
#
]
}

View file

@ -0,0 +1,26 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.genebean.sample;
in {
imports = [
# paths of other modules
];
options.genebean.sample = {
enable = mkEnableOption "Enable the genebean sample module";
foo = mkOption {
type = types.str;
default = "defaultFoo";
description = "An example string option for the genebean sample module.";
};
};
config = mkIf cfg.enable {
# configuration settings when enabled
genebean.sample = {
# option definitions
};
};
}