Skip to content

Commit

Permalink
revert accidental format change
Browse files Browse the repository at this point in the history
  • Loading branch information
aster-void committed Dec 24, 2024
1 parent 3d9e3af commit a3aa2bc
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions modules/input.nix
Original file line number Diff line number Diff line change
Expand Up @@ -390,12 +390,10 @@ in
!(lib.all (c: builtins.elem (lib.toLower c) validChars) (hexChars hex))
&& (builtins.stringLength hex) > 0;
allHexCodes = lib.flatten (
map
(t: [
t.vendorId
t.productId
])
(cfg.input.touchpads ++ cfg.input.mice)
map (t: [
t.vendorId
t.productId
]) (cfg.input.touchpads ++ cfg.input.mice)
);
invalidHexCodes = builtins.filter hexCodeInvalid allHexCodes;
in
Expand Down

0 comments on commit a3aa2bc

Please sign in to comment.