blob: 3646d2e63cd91e53c8d2ed7cf972f9e3226bcdd5 (
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-screen-color = "#ff8cd9"
macos-icon-ghost-color = "#0B0B0B"
auto-update = "off"
'';
}
#+end_src
|