Files
Nixos/modules/system/darwin/apps/keka.nix
T

18 lines
251 B
Nix

{ lib, config, ... }:
with lib;
let
cfg = config.os.homebrew.keka;
in
{
options.os.homebrew.keka = {
enable = mkEnableOption "System keka homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"keka"
];
};
}