home/alacritty: fix after nixos 24.05 update

This commit is contained in:
Oystein Kristoffer Tveit 2024-06-08 12:37:30 +02:00
parent 8dc56e4aa7
commit 29c1fd0b89
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
1 changed files with 5 additions and 5 deletions

View File

@ -26,14 +26,14 @@
in
{
primary = getAttrs primaryColors config.colors.defaultColorSet;
normal = let
removePrimaryColorAttrs = n: v: !(any (pc: n ? pc) primaryColors);
in filterAttrs removePrimaryColorAttrs config.colors.defaultColorSet;
normal = builtins.removeAttrs config.colors.defaultColorSet (primaryColors ++ [ "name" ]);
};
cursor = {
style = "Block";
blinking = "On";
style = {
shape = "Block";
blinking = "On";
};
unfocused_hollow = true;
};