Add a simple template for a module

Just to remind me of the incantation.
This commit is contained in:
Eli Ribble 2025-07-18 15:29:32 +00:00
parent 01d8e5a580
commit 859ae228d6

View file

@ -0,0 +1,11 @@
{ pkgs, lib, config, ... }:
with lib;
{
options.myModules.template.enable = mkEnableOption "custom template configuration";
config = mkIf config.myModules.template.enable {
#environment.systemPackages = with pkgs; [
#template
#];
};
}