nixos/xserver: fix xserver.conf reproducibility (sort ModulePath entries)
This commit is contained in:
parent
3b66318c06
commit
2ddbabec4d
@ -121,7 +121,7 @@ let
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
for i in $(find ${toString cfg.modules} -type d); do
|
for i in $(find ${toString cfg.modules} -type d | sort); do
|
||||||
if test $(echo $i/*.so* | wc -w) -ne 0; then
|
if test $(echo $i/*.so* | wc -w) -ne 0; then
|
||||||
echo " ModulePath \"$i\"" >> $out
|
echo " ModulePath \"$i\"" >> $out
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user