1

System: Update system module template

This commit is contained in:
2025-07-08 18:57:20 +02:00
parent 8d4934b836
commit 3ecd08fb88
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{
config,
lib,
mylib,
...
}: let
inherit (config.modules) TEMPLATE;
in {
options.modules.TEMPLATE = import ./options.nix {inherit lib mylib;};
config =
lib.mkIf TEMPLATE.enable {
};
}

View File

@ -0,0 +1,7 @@
{
lib,
mylib,
...
}: {
enable = lib.mkEnableOption "TEMPLATE";
}