home/alacritty: fix after nixos 24.05 update
This commit is contained in:
parent
8dc56e4aa7
commit
29c1fd0b89
|
@ -26,14 +26,14 @@
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
primary = getAttrs primaryColors config.colors.defaultColorSet;
|
primary = getAttrs primaryColors config.colors.defaultColorSet;
|
||||||
normal = let
|
normal = builtins.removeAttrs config.colors.defaultColorSet (primaryColors ++ [ "name" ]);
|
||||||
removePrimaryColorAttrs = n: v: !(any (pc: n ? pc) primaryColors);
|
|
||||||
in filterAttrs removePrimaryColorAttrs config.colors.defaultColorSet;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
cursor = {
|
cursor = {
|
||||||
style = "Block";
|
style = {
|
||||||
|
shape = "Block";
|
||||||
blinking = "On";
|
blinking = "On";
|
||||||
|
};
|
||||||
unfocused_hollow = true;
|
unfocused_hollow = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue