nix-config/modules/template.nix
2024-03-22 23:35:56 -07:00

10 lines
189 B
Nix

{ pkgs, lib, config, ... }:
with lib;
let cfg = config.modules.PROGRAM;
in {
options.modules.PROGRAM = { enable = mkEnableOption "PROGRAM"; };
config = mkIf cfg.enable {
};
}