Ghostty home-manager just having it generate the config

master
Dustin Swan 4 days ago
parent 2daf7f4a12
commit 12dd747c4d
Signed by: dustinswan
GPG Key ID: AB49BD6B2B3A6377

@ -1,28 +1,33 @@
{ ... }: { pkgs, ... }:
{ # Ghostty not building on my mac at the moment
let
ghostty-mock = pkgs.writeShellScriptBin "gostty-mock" ''
true
'';
in {
fonts.fontconfig.enable = true; fonts.fontconfig.enable = true;
# not building on my mac at the moment programs.ghostty = {
# programs.ghostty = { enable = true;
# enable = true; installBatSyntax = false;
# installBatSyntax = false; package = ghostty-mock;
# settings = { settings = {
# font-family = "Iosevka NFM"; font-family = "Iosevka NFM";
# font-size = 16; font-size = 16;
# font-thicken = true; font-thicken = true;
# # theme = "dark:catppuccin-mocha,light:catppuccin-latte"; # theme = "dark:catppuccin-mocha,light:catppuccin-latte";
# theme = "catppuccin-mocha"; theme = "catppuccin-mocha";
# background-opacity = 0.95; background-opacity = 0.95;
# background-blur-radius = 15; background-blur-radius = 15;
# window-padding-x = 12; window-padding-x = 12;
# window-padding-y = 8; window-padding-y = 8;
# window-padding-balance = true; window-padding-balance = true;
# macos-titlebar-style = "tabs"; macos-titlebar-style = "tabs";
# macos-option-as-alt = "left"; macos-option-as-alt = "left";
# copy-on-select = "clipboard"; copy-on-select = "clipboard";
# # keybind = "global:cmd+grave_accent=toggle_quick_terminal"; # keybind = "global:cmd+grave_accent=toggle_quick_terminal";
# }; };
# }; };
} }

Loading…
Cancel
Save