2024-05-22 14:29:45 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
2024-07-20 13:18:01 +02:00
|
|
|
cfg = config.modules.system.programs.terminals.kitty;
|
|
|
|
inherit (config.modules.other.system) username;
|
2024-05-15 00:14:59 +02:00
|
|
|
in {
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home-manager.users.${username} = {
|
|
|
|
programs.kitty = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
mouse_hide_wait = -1;
|
2024-05-19 03:00:00 +02:00
|
|
|
allow_remote_control = true;
|
2024-05-15 00:14:59 +02:00
|
|
|
url_style = "curly";
|
|
|
|
open_url_with = "default";
|
|
|
|
confirm_os_window_close = "0";
|
2024-04-23 10:59:57 +02:00
|
|
|
};
|
2024-05-15 00:14:59 +02:00
|
|
|
};
|
2024-04-23 10:59:57 +02:00
|
|
|
};
|
2024-05-15 00:14:59 +02:00
|
|
|
};
|
|
|
|
}
|