Files
Nixos/modules/system/darwin/ghostty.nix
T
2026-02-18 12:10:59 +01:00

18 lines
261 B
Nix

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