From 80638712cf2882b2d3baa3f3d17ba5ff2e13a3c9 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Wed, 31 Dec 2025 01:17:49 -0500 Subject: doing some linting --- home/apps/alacritty.nix | 4 ++-- home/apps/default.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'home/apps') 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 diff --git a/home/apps/default.nix b/home/apps/default.nix index 074e588..58cd117 100644 --- a/home/apps/default.nix +++ b/home/apps/default.nix @@ -1,4 +1,4 @@ -{...}: { +_: { imports = [ ./waybar ./wofi -- cgit v1.2.3-freya