mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Remove unnecessary "sort" call
attrNames already returns names in sorted order.
This commit is contained in:
parent
7f3f30b782
commit
b70a979c69
@ -39,7 +39,7 @@ in
|
||||
let content = readDir dir; in
|
||||
map (n: import (dir + ("/" + n)))
|
||||
(builtins.filter (n: builtins.match ".*\.nix" n != null)
|
||||
(sort lessThan (attrNames content)));
|
||||
(attrNames content));
|
||||
in
|
||||
if dirPath != "" then
|
||||
overlays dirPath
|
||||
|
Loading…
Reference in New Issue
Block a user