nixos-systems/modules/system/template.nix
Eli Ribble 859ae228d6 Add a simple template for a module
Just to remind me of the incantation.
2025-07-18 15:46:21 +00:00

11 lines
246 B
Nix

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