commit d3642006ff02f85ff318791c86e50839b133a268
parent 216995061910646747428b7122fd95bfd5c9ee65
Author: Chris <chris@echoz.io>
Date: Mon, 23 Feb 2026 02:54:05 +0100
fix(kitty): don't restore window size
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/modules/kitty/default.nix b/modules/kitty/default.nix
@@ -21,6 +21,7 @@
window_padding_width = 10;
disable_ligatures = false;
confirm_os_window_close = 0;
+ remember_window_size = false;
}
// (with style.colors; {
foreground = "#${fg.hex}";
@@ -35,7 +36,7 @@
url_color = "#${url.hex}";
})
// builtins.mapAttrs (_: c: "#${c.hex}") (
- lib.getAttrs (builtins.genList (n: "color${builtins.toString n}") 16) style.colors
+ lib.getAttrs (builtins.genList (n: "color${toString n}") 16) style.colors
);
};
};