1
0
Fork 0
nix-configuration/modules/module.nix.template

42 lines
1,012 B
Plaintext
Raw Normal View History

# This is an example of a blank module.
{ config, lib, ... }:
let
cfg = config.aux.system.services.myModule;
in
{
options = {
aux.system.services.myModule = {
enable = lib.mkEnableOption (lib.mdDoc "Enables this example module.");
attributes = lib.mkOption {
default = { };
type = lib.types.attrs;
description = "An example of an attributes option.";
};
string = lib.mkOption {
default = "";
type = lib.types.str;
description = "An example of a string option.";
};
list = lib.mkOption {
default = [ ];
type = lib.types.listOf lib.types.int;
description = "An example of a list (of integers) option.";
};
enum = mkOption {
default = "one";
type = types.enum [
"one"
"two"
];
description = "An example of an enum option.";
};
};
};
2024-05-22 16:47:55 -04:00
config = lib.mkIf cfg.enable {
# Add changes applied by this module here.
};
}