meml0rz 6ab819268e kekl
2024-12-09 20:49:04 +01:00

22 lines
328 B
Nix

{ config, pkgs, ... }:
{
programs = {
kitty = {
enable = true;
extraConfig = ''
font_size 15.0
cursor_shape beam
close_window true
confirm_os_window_close 0
foreground #e6e6dc
background #161616
'';
};
tmux = {
enable = true;
};
};
}