blob: 214e5884359550c2d5468790c5665b20a3a47fe0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#+title: GhosTTY Configuration
This terminal emulator seems over-hyped, but I'm trying it anyways.
#+begin_src nix
{ config, pkgs, ... }:
{
home.file."./.config/ghostty/config".text = ''
font-family = "SauceCodePro Nerd Font"
font-thicken = true
theme = "Unikitty"
window-decoration = true
macos-option-as-alt = true
quit-after-last-window-closed = true
macos-window-shadow = false
macos-icon = "custom-style"
macos-icon-frame = "beige"
macos-icon-ghost-color = "#f891D6"
macos-icon-screen-color = "#0B0B0B"
auto-update = "off"
'';
}
#+end_src
|