feat(ghostty): add declarative config with Maple Mono font via Home Manager

This commit is contained in:
2026-04-13 21:13:02 +08:00
parent a1ba07faf5
commit 53f8c2ceb3
2 changed files with 13 additions and 0 deletions
+1
View File
@@ -1,6 +1,7 @@
{
imports = [
./fish.nix
./ghostty.nix
./starship.nix
./tools.nix
];
+12
View File
@@ -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;
};
};
}