2024-12-26 23:17:50 +00:00
|
|
|
{ config, inputs, pkgs, ... }: {
|
2024-12-26 22:28:12 +00:00
|
|
|
|
2024-12-26 22:34:18 +00:00
|
|
|
home.packages =
|
2024-12-27 02:03:23 +00:00
|
|
|
[ (config.lib.nixGL.wrap inputs.ghostty.packages.${pkgs.system}.default) ];
|
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
|
|
|
}
|
|
|
|
|