my system configurations ^-^
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: enable ghostty

willow 856137ba ebf65576

+6 -4
+6 -4
modules/shared/home/programs/gui/terminals/ghostty.nix
··· 7 7 }: let 8 8 cfg = osConfig.settings.programs; 9 9 in { 10 - # ghostty is broken on darwin 11 10 config = lib.mkIf (cfg.gui.enable 12 - && cfg.categories.core.enable 13 - && !pkgs.stdenv.hostPlatform.isDarwin) { 11 + && cfg.categories.core.enable) { 14 12 programs.ghostty = { 15 - enable = false; 13 + enable = true; 14 + 15 + # ghostty is broken on darwin 16 + package = lib.mkIf pkgs.stdenv.hostPlatform.isDarwin null; 17 + 16 18 enableBashIntegration = config.programs.bash.enable; 17 19 enableFishIntegration = config.programs.fish.enable; 18 20 enableZshIntegration = config.programs.zsh.enable;