This commit is contained in:
commit
95a533c876
451 changed files with 18255 additions and 0 deletions
22
modules/home/kitty/default.nix
Normal file
22
modules/home/kitty/default.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ lib, ... }:
|
||||
|
||||
let
|
||||
inherit (lib) mkDefault;
|
||||
in
|
||||
{
|
||||
programs.kitty = {
|
||||
settings = {
|
||||
confirm_os_window_close = mkDefault 0;
|
||||
enable_audio_bell = mkDefault "no";
|
||||
window_margin_width = mkDefault 5;
|
||||
};
|
||||
};
|
||||
|
||||
home.sessionVariables = {
|
||||
TERMINAL = "kitty";
|
||||
};
|
||||
|
||||
home.shellAliases = {
|
||||
s = "kitten ssh"; # copy terminfo
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue