summaryrefslogtreecommitdiff
path: root/home/rices/schrottkatze/terminal.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
commit15d50528cf86e93bad19f65f1e4b47af49e94d71 (patch)
treecaaa600a8f38df84dc269a3844d276393e90262c /home/rices/schrottkatze/terminal.nix
parent72ee2b5a1e65ce804d6e1dcfd11aec06385594cc (diff)
Nuked everything
Diffstat (limited to 'home/rices/schrottkatze/terminal.nix')
-rw-r--r--home/rices/schrottkatze/terminal.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/home/rices/schrottkatze/terminal.nix b/home/rices/schrottkatze/terminal.nix
deleted file mode 100644
index 403449c..0000000
--- a/home/rices/schrottkatze/terminal.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{...}: {
- 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";
- };
-}