mirror of
https://github.com/jbowdre/dotfiles.git
synced 2025-01-15 05:29:13 +00:00
16 lines
392 B
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
|
|
'';
|
|
}
|
|
|