mirror of
https://github.com/jbowdre/dotfiles.git
synced 2025-01-15 13:39:13 +00:00
16 lines
379 B
Nix
16 lines
379 B
Nix
{ config, pkgs, ... }: {
|
|
|
|
home.packages = with pkgs.unstable; [ (config.lib.nixGL.wrap ghostty) ];
|
|
|
|
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
|
|
title = " "
|
|
window-height = 50
|
|
window-width = 170
|
|
'';
|
|
}
|
|
|