Refactoring!

This commit is contained in:
fwastring 2025-06-04 12:51:55 +02:00
parent d8f3613304
commit 372d2fb3c9
33 changed files with 14 additions and 1745 deletions

View file

@ -1,40 +0,0 @@
{
pkgs,
lib,
myhostname,
...
}:
{
programs.kitty = {
enable = true;
font =
if myhostname == "laptop" then
{
# name = "Iosevka Nerd Font Bold";
name = "ComicShannsMono Nerd Font Bold";
# name = "Hack Nerd Font Mono Bold";
size = 17;
}
else
{
# name = "Iosevka Nerd Font Bold";
name = "ComicShannsMono Nerd Font Bold";
# name = "Hack Nerd Font Mono Bold";
size = 12;
};
shellIntegration = {
mode = "no-cursor";
};
# themeFile = "Catppuccin-Mocha";
# themeFile = "Catppuccin-Latte";
themeFile = "Solarized_Light";
# themeFile = "rose-pine-dawn";
# themeFile = "Belafonte_Day";
settings = {
confirm_os_window_close = 2;
cursor_shape = "block";
cursor_blink_interval = 0;
enable_audio_bell = false;
};
};
}