Files
Nixos/modules/system/darwin/casks/zen.nix
T
2026-04-12 15:41:44 +02:00

18 lines
247 B
Nix

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