mirror of
https://github.com/RGBCube/ncc
synced 2025-07-30 19:47:47 +00:00
Don't name unused params _
This commit is contained in:
parent
2615d405c8
commit
e0e0115b46
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@
|
|||
put the soon-to-be attributes here, so I don't forget.
|
||||
|
||||
```nix
|
||||
nixConfig = with builtins; mapAttrs (_: concatStringsSep " ") {
|
||||
nixConfig = with builtins; mapAttrs (name: concatStringsSep " ") {
|
||||
extra-substituters = [
|
||||
"https://nix-community.cachix.org/"
|
||||
"https://hyprland.cachix.org/"
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
render.tab = "all";
|
||||
};
|
||||
|
||||
settings.keys = lib.genAttrs [ "normal" "select" ] (_: {
|
||||
settings.keys = lib.genAttrs [ "normal" "select" ] (name: {
|
||||
D = "extend_to_line_end";
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue