dotfiles/home/modules/gui/ghostty.nix

16 lines
392 B
Nix

{ config, inputs, pkgs, ... }: {
home.packages =
[ (config.lib.nixGL.wrap inputs.ghostty.packages.x86_64-linux.default) ];
xdg.configFile."ghostty/config".text = ''
auto-update = off
command = ${pkgs.fish}/bin/fish
font-family = BerkeleyMono Nerd Font Mono
shell-integration = fish
theme = catppuccin-mocha
window-height = 50
window-width = 170
'';
}