mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 15:16:23 +01:00
17 lines
217 B
Nix
17 lines
217 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
cfg = config.jade.NAME;
|
|
in
|
|
with lib; {
|
|
options.jade.NAME = {
|
|
enable = mkEnableOption "Enable the module";
|
|
};
|
|
config =
|
|
mkIf cfg.enable {
|
|
};
|
|
}
|