1

Modules/Kitty: Update for nix-darwin

This commit is contained in:
2026-03-21 13:56:24 +01:00
parent 9bec5f42b1
commit 91bd79a051

View File

@ -3,6 +3,7 @@
config,
lib,
mylib,
pkgs,
...
}: let
inherit (config.homemodules) kitty color;
@ -27,16 +28,21 @@ in {
"kitty_mod+l" = "next_layout";
};
settings = {
settings = lib.mkMerge [
# Linux config
(lib.mkIf pkgs.stdenv.isLinux {
allow_remote_control = "yes"; # For nnn file preview or nvim scrollback
listen_on = "unix:@mykitty";
})
# Common config
{
editor = config.home.sessionVariables.EDITOR;
scrollback_lines = 10000;
window_padding_width = 10; # Looks stupid with editors if bg doesn't match
# hide_window_decorations = "yes";
enabled_layouts = "grid,vertical,horizontal";
allow_remote_control = "yes"; # For nnn file preview or nvim scrollback
listen_on = "unix:@mykitty";
tab_bar_min_tabs = 2; # Don't show a single tab
tab_bar_edge = "bottom";
tab_bar_style = "powerline";
@ -116,7 +122,8 @@ in {
# white
color7 = color.hexS.surface2;
color15 = color.hexS.surface1;
};
}
];
};
};
}