audio-server: add ledfx overlays

This commit is contained in:
Sandro - 2023-04-29 23:26:17 +02:00
parent f511eecdf7
commit 4f2a08a5cb
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 25 additions and 0 deletions

View File

@ -60,6 +60,31 @@
];
};
nixpkgs.overlays = [
(final: prev: {
python3 = prev.python3.override {
packageOverrides = python-final: python-prev: {
aiohttp = python-prev.aiohttp.overrideAttrs ({ nativeBuildInputs ? [],... }: {
nativeBuildInputs = nativeBuildInputs ++ [python-final.setuptools];
doCheck = false;
doInstallCheck = false;
});
pystray = python-prev.pystray.overrideAttrs (_: {
doCheck = false;
doInstallCheck = false;
});
samplerate = python-prev.samplerate.overrideAttrs (_: {
dontUseSetuptoolsCheck = true;
});
};
};
python3Packages = final.python3.pkgs;
})
];
security.rtkit.enable = true;
services.pipewire = {