fighting with wpaperd and swaylock-plugin

This commit is contained in:
Matt Nish-Lapidus 2025-07-04 01:12:55 -04:00
parent 0a990d8308
commit cfb2e9209e
9 changed files with 68 additions and 46 deletions

12
overlays/manifold.nix Normal file
View file

@ -0,0 +1,12 @@
final: prev: {
manifold = prev.manifold.overrideAttrs (old: {
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
"-DMANIFOLD_TEST=OFF"
"-DMANIFOLD_CROSS_SECTION=ON"
"-DMANIFOLD_PAR=TBB"
];
doCheck = false;
});
}