nix dotfiles

This commit is contained in:
itamar 2026-04-10 18:50:25 +03:00
commit 7b8005c867
Signed by: itamar
SSH key fingerprint: SHA256:Dv6UzB9hN8q8FUgMR/7X3DTFpE/vSB2m05+KNnxM4B0
27 changed files with 1728 additions and 0 deletions

19
navi/laniakea/kitty.nix Normal file
View file

@ -0,0 +1,19 @@
{
programs.kitty = {
enable = true;
settings = {
confirm_os_window_close = 0;
background_opacity = "0.9";
enable_audio_bell = false;
mouse_map = "right press ungrabbed paste_from_clipboard";
cursor_shape = "underline";
};
font = {
name = "IosevkaTerm Nerd Font";
};
themeFile = "Carbonfox";
shellIntegration.enableBashIntegration = true;
};
}