1
0

ghostty.nix 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. programs.ghostty = {
  3. enable = false;
  4. installVimSyntax = true;
  5. themes = {
  6. iceberg-dark = {
  7. background = "161821";
  8. foreground = "c6c8d1";
  9. selection-background = "1e2132";
  10. selection-foreground = "c6c8d1";
  11. cursor-color = "#d2d4de";
  12. palette = [
  13. # black
  14. "0=#161821"
  15. "8=#6b7089"
  16. # red
  17. "1=#e27878"
  18. "9=#e98989"
  19. # green
  20. "2=#b4be82"
  21. "10=#c0ca8e"
  22. # yellow
  23. "3=#e2a478"
  24. "11=#e9b189"
  25. # blue
  26. "4=#84a0c6"
  27. "12=#91acd1"
  28. # magenta
  29. "5=#a093c7"
  30. "13=#ada0d3"
  31. # cyan
  32. "6=#89b8c2"
  33. "14=#95c4ce"
  34. # white
  35. "7=#c6c8d1"
  36. "15=#d2d4de"
  37. ];
  38. };
  39. };
  40. settings = {
  41. background-opacity = 0.8;
  42. font-family = "FiraCode Nerd Font";
  43. font-size = 11.0;
  44. macos-titlebar-style = "hidden";
  45. theme = "iceberg-dark";
  46. window-padding-x = 12;
  47. window-padding-y = 12;
  48. window-theme = "ghostty";
  49. };
  50. };
  51. }