renamed to home.nix

This commit is contained in:
lsoriano-mcm
2025-07-03 16:34:49 -05:00
parent 3dd4f2783e
commit f59110c87e
33 changed files with 1259 additions and 10 deletions
+25
View File
@@ -0,0 +1,25 @@
{myConfig, ...}: {
programs.kitty = {
enable = true;
themeFile = "kanagawa";
settings = {
confirm_os_window_close = 0;
window_padding_width = 10;
font_size = myConfig.general.terminal.Size;
font_family = myConfig.general.terminal.Font;
bold_font = "auto";
italic_font = "auto";
bold_italic_font = "auto";
# optimization
input_delay = 0;
repaint_delay = 2;
sync_to_monitor = false;
wayland_enable_ime = false;
allow_remote_control = true;
};
extraConfig = "include colors.conf";
};
}