home/alacritty: fix after nixos 24.05 update
This commit is contained in:
parent
8dc56e4aa7
commit
29c1fd0b89
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue