diff options
Diffstat (limited to 'home/apps/alacritty.nix')
| -rw-r--r-- | home/apps/alacritty.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/apps/alacritty.nix b/home/apps/alacritty.nix index 5c47f65..e90e7e6 100644 --- a/home/apps/alacritty.nix +++ b/home/apps/alacritty.nix @@ -48,7 +48,7 @@ in { # Colors colors = { - normal = lib.attrsets.mapAttrs (name: color: "${color}") { + normal = lib.attrsets.mapAttrs (_: color: "${color}") { inherit (config.theme.colors.normal) black @@ -62,7 +62,7 @@ in { ; }; - bright = lib.attrsets.mapAttrs (name: color: "${color}") { + bright = lib.attrsets.mapAttrs (_: color: "${color}") { inherit (config.theme.colors.bright) black |