diff --git a/home/shell/default.nix b/home/shell/default.nix index ee9845c..81a57cb 100644 --- a/home/shell/default.nix +++ b/home/shell/default.nix @@ -1,6 +1,7 @@ { imports = [ ./fish.nix + ./ghostty.nix ./starship.nix ./tools.nix ]; diff --git a/home/shell/ghostty.nix b/home/shell/ghostty.nix new file mode 100644 index 0000000..3391a5e --- /dev/null +++ b/home/shell/ghostty.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: + +{ + programs.ghostty = { + enable = pkgs.stdenv.isDarwin; + package = null; # installed via Homebrew cask + settings = { + font-family = "Maple Mono NF CN"; + font-size = 14; + }; + }; +}