mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
10 lines
189 B
Nix
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 {
|
|
};
|
|
}
|