changes
This commit is contained in:
commit
92691d7506
40 changed files with 2011 additions and 0 deletions
24
moduler/common/kitty.nix
Normal file
24
moduler/common/kitty.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ pkgs, lib, myhostname, ... }:
|
||||
{
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
font = if myhostname == "nix-desktop" then {
|
||||
name = "FiraCode Nerd Font";
|
||||
size = 18;
|
||||
} else {
|
||||
name = "FiraCode Nerd Font";
|
||||
size = 24;
|
||||
};
|
||||
shellIntegration = {
|
||||
enableZshIntegration = true;
|
||||
mode = "no-cursor";
|
||||
};
|
||||
theme = "Catppuccin-Macchiato";
|
||||
settings = {
|
||||
confirm_os_window_close = 2;
|
||||
cursor_shape = "block";
|
||||
cursor_blink_interval = 0;
|
||||
enable_audio_bell = false;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue