mirror of https://git.jolheiser.com/dotnix.git
15 lines
515 B
Nix
15 lines
515 B
Nix
{
|
|
xdg.configFile."ghostty/config".text = ''
|
|
background-opacity = 0.9
|
|
command = nu
|
|
confirm-close-surface = false
|
|
font-family = Monaspace Neon
|
|
theme = catppuccin-mocha
|
|
term = xterm-256color
|
|
'';
|
|
# zig build -p ~/.local/share/ghostty -Doptimize=ReleaseFast
|
|
xdg.systemDirs.data = ["/home/jolheiser/.local/share/ghostty/share"];
|
|
home.sessionPath = ["/home/jolheiser/.local/share/ghostty/bin"];
|
|
programs.bash.enable = true;
|
|
}
|