home/ghostty: depend on iosevka font

This commit is contained in:
Primrose 2026-01-03 00:13:04 +01:00
parent c1789f2191
commit 6a4748c9d0
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -1,4 +1,18 @@
{
lib,
pkgs,
config,
...
}:
let
cfg = config.programs.ghostty;
in
{
config = lib.mkIf cfg.enable {
home.packages = [
pkgs.nerd-fonts.iosevka
];
programs.ghostty.settings = {
gtk-titlebar = false;
window-decoration = "none";
@ -30,8 +44,9 @@
confirm-close-surface = false;
keybind = [
"ctrl+shift+==increase_font_size:0.5"
"ctrl+-=decrease_font_size:0.5"
"ctrl+shift+==increase_font_size:1"
"ctrl+-=decrease_font_size:1"
];
};
};
}