meml0rz 9ab3923444 kekl
2024-12-10 00:12:46 +01:00

19 lines
273 B
Nix

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