dotfiles/home/modules/gui/ghostty.nix

17 lines
379 B
Nix
Raw Normal View History

2025-01-08 15:13:18 +00:00
{ config, pkgs, ... }: {
2024-12-26 22:28:12 +00:00
2025-01-08 15:13:18 +00:00
home.packages = with pkgs.unstable; [ (config.lib.nixGL.wrap ghostty) ];
2024-12-26 22:28:12 +00:00
2024-12-26 23:17:50 +00:00
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
2024-12-27 02:45:37 +00:00
title = " "
2024-12-26 23:17:50 +00:00
window-height = 50
window-width = 170
'';
2024-12-26 22:28:12 +00:00
}