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:
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.
|
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/"
|
||||||
|
|
|
@ -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";
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue