From 46743087795739946490612cd47cde290259250c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Wed, 4 Sep 2024 12:22:59 +0200 Subject: [PATCH] fix(kitty): bad tab bar display Fixed in kitty 0.35.1: Fix a regression in 0.34 that caused the tab bar to not render in second and subsequent OS Windows under Hyprland (https://github.com/kovidgoyal/kitty/issues/7413) --- flake.nix | 2 ++ home.nix | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 903789f..0b594f0 100644 --- a/flake.nix +++ b/flake.nix @@ -35,6 +35,7 @@ }; outputs = { nixpkgs, + nixpkgs-unstable, home-manager, stylix, @@ -63,6 +64,7 @@ nixvim = nixvim.packages.${system}.default; river-shifttags = river-shifttags.packages.${system}.default; breezex-cursor = breezex-cursor.packages.${system}.default; + kitty-unstable = nixpkgs-unstable.legacyPackages.${system}.kitty; }; }; } diff --git a/home.nix b/home.nix index 7640a0f..728edb8 100644 --- a/home.nix +++ b/home.nix @@ -1,4 +1,4 @@ -{ pkgs, nixvim, river-shifttags, ... }: let +{ pkgs, nixvim, river-shifttags, kitty-unstable, ... }: let username = "khais"; in { imports = [ @@ -112,6 +112,7 @@ in { }; programs.kitty = { + package = kitty-unstable; enable = true; keybindings = { "super+shift+enter" = "new_os_window_with_cwd";