diff options
Diffstat (limited to 'modules/terminal/alacritty.nix')
-rw-r--r-- | modules/terminal/alacritty.nix | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/modules/terminal/alacritty.nix b/modules/terminal/alacritty.nix index 7addff0..27a8150 100644 --- a/modules/terminal/alacritty.nix +++ b/modules/terminal/alacritty.nix @@ -50,7 +50,8 @@ in { # Colors colors = { normal = lib.attrsets.mapAttrs (name: color: "${color}") { - inherit (config.theme.colors.normal) + inherit + (config.theme.colors.normal) black red green @@ -58,11 +59,13 @@ in { blue magenta cyan - white; + white + ; }; bright = lib.attrsets.mapAttrs (name: color: "${color}") { - inherit (config.theme.colors.bright) + inherit + (config.theme.colors.bright) black red green @@ -70,7 +73,8 @@ in { blue magenta cyan - white; + white + ; }; cursor = { |