From 85be037f868a01c04cd97799019ee2f84c248f4e Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Tue, 25 Mar 2025 02:25:29 +0100 Subject: [PATCH] kitty font --- modules/applications/kitty.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/applications/kitty.nix b/modules/applications/kitty.nix index 48c60a3..0fc6eeb 100644 --- a/modules/applications/kitty.nix +++ b/modules/applications/kitty.nix @@ -1,6 +1,7 @@ { lib, config, + pkgs, ... }: let @@ -23,6 +24,10 @@ in enableZshIntegration = true; enableBashIntegration = true; }; + font = { + name = "Maple Mono NF"; + package = pkgs.maple-mono.NF; + }; }; }; }