diff options
Diffstat (limited to 'home/apps')
| -rw-r--r-- | home/apps/alacritty.nix | 4 | ||||
| -rw-r--r-- | home/apps/default.nix | 2 |
2 files changed, 3 insertions, 3 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 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 |