Home

dotnix @147b2f4c12d507c30ea1a0ec0be4d91aaff99075 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / gui / ghostty.nix
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
{
  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;
}