diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-12-31 01:17:49 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-12-31 01:22:56 -0500 |
| commit | 80638712cf2882b2d3baa3f3d17ba5ff2e13a3c9 (patch) | |
| tree | 9df75bbfc0522c5868da40cbc966ff10b4d3d62a /home/apps/alacritty.nix | |
| parent | remove unused variabled (and add nixd lsp) (diff) | |
| download | dotfiles-nix-80638712cf2882b2d3baa3f3d17ba5ff2e13a3c9.tar.gz dotfiles-nix-80638712cf2882b2d3baa3f3d17ba5ff2e13a3c9.tar.bz2 dotfiles-nix-80638712cf2882b2d3baa3f3d17ba5ff2e13a3c9.zip | |
doing some linting
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 |