diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-04-10 19:20:58 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-04-10 19:20:58 +0200 |
| commit | adcc6ca839c4780a8adb82de712ec3c9e4da33f3 (patch) | |
| tree | cafb7b744316ad79aef2bb2c899f920c4ae2cc83 /home/rices/schrottkatze/terminal.nix | |
| parent | a414126dbda913dcc33d5f9546a9f99859d1557f (diff) | |
| parent | 84d39cf904e7008434c1e5ed8257cf09b1875bea (diff) | |
Merge branch 'schrott-extract-rice'
Diffstat (limited to 'home/rices/schrottkatze/terminal.nix')
| -rw-r--r-- | home/rices/schrottkatze/terminal.nix | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/home/rices/schrottkatze/terminal.nix b/home/rices/schrottkatze/terminal.nix new file mode 100644 index 0000000..403449c --- /dev/null +++ b/home/rices/schrottkatze/terminal.nix @@ -0,0 +1,36 @@ +{...}: { + programs.kitty = { + enable = true; + font.size = 12; + font.name = "Departure Mono Nerd Font"; + keybindings = { + "ctrl+shift+n" = "new_os_window_with_cwd"; + }; + settings = rec { + adjust_column_width = "95%"; + color0 = "#282828"; + color8 = "#928374"; + color1 = "#cc241d"; + color9 = "#fb4934"; + color2 = "#98971a"; + color10 = "#b8bb26"; + color3 = "#d79921"; + color11 = "#fabd2f"; + color4 = "#458588"; + color12 = "#83a598"; + color5 = "#b16286"; + color13 = "#d3869b"; + color6 = "#689d6a"; + color14 = "#8ec07c"; + color7 = "#a89984"; + color15 = "#ebdbb2"; + foreground = color15; + background = "#1d2021"; + confirm_os_window_close = 0; + hide_window_decorations = true; + }; + }; + home.sessionVariables = { + TERMINAL = "kitty"; + }; +} |
