1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-31 20:17:45 +00:00

Don't name unused params _

This commit is contained in:
RGBCube 2023-12-14 10:54:07 +03:00
parent 2615d405c8
commit e0e0115b46
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@
put the soon-to-be attributes here, so I don't forget. put the soon-to-be attributes here, so I don't forget.
```nix ```nix
nixConfig = with builtins; mapAttrs (_: concatStringsSep " ") { nixConfig = with builtins; mapAttrs (name: concatStringsSep " ") {
extra-substituters = [ extra-substituters = [
"https://nix-community.cachix.org/" "https://nix-community.cachix.org/"
"https://hyprland.cachix.org/" "https://hyprland.cachix.org/"

View file

@ -49,7 +49,7 @@
render.tab = "all"; render.tab = "all";
}; };
settings.keys = lib.genAttrs [ "normal" "select" ] (_: { settings.keys = lib.genAttrs [ "normal" "select" ] (name: {
D = "extend_to_line_end"; D = "extend_to_line_end";
}); });
}; };