blob: 57a0aa085243cc325e3398901aec295421b5fcd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#+title: GhosTTY Configuration
This terminal emulator seems over-hyped, but I'm trying it anyways.
#+begin_src nix
{ config, pkgs, ... }:
{
programs.ghostty = {
enable = true;
enableZshIntegration = true;
};
}
#+end_src
|