1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 19:47:47 +00:00

Remove dead code

This commit is contained in:
RGBCube 2024-01-10 15:35:19 +03:00
parent 2c6c36e7d2
commit dac02d90fa
No known key found for this signature in database
5 changed files with 12 additions and 12 deletions

View file

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

View file

@ -16,9 +16,9 @@ systemConfiguration {
package = upkgs.nixSuper;
registry = (lib.filterAttrs
(name: value: value != {})
(_: value: value != {})
(builtins.mapAttrs
(name: value: lib.optionalAttrs (value ? sourceInfo) {
(_: value: lib.optionalAttrs (value ? sourceInfo) {
flake = value;
}) inputs)) // { default.flake = inputs.nixpkgs; };