Compare commits

..

No commits in common. "197bd0fb60ee6c7c78967003888ab0f7c3a25408" and "dec3e9b7606680eeddee7e0e7d5eb48cc8d2520f" have entirely different histories.

3 changed files with 7 additions and 13 deletions

View File

@ -62,7 +62,6 @@ in
./modules/ccache.nix
./modules/networking.nix
./modules/mesa.nix
./modules/audio.nix
# ISO installer building stuff:
./ISO/iso.nix

View File

@ -4,14 +4,18 @@
cmake,
llvmPackages,
qt6,
lsfg-vk,
}:
llvmPackages.stdenv.mkDerivation (finalAttrs: {
pname = "lsfg-vk-ui";
version = lsfg-vk.version;
version = "2.0.0-dev";
src = lsfg-vk.src;
src = fetchFromGitHub {
owner = "PancakeTAS";
repo = "lsfg-vk";
tag = "v${finalAttrs.version}";
hash = "sha256-Qb3vufCzNpM1r+vgo8M9nnA7CENgGTithWG0oXqLKbI=";
};
nativeBuildInputs = [
llvmPackages.clang-tools

View File

@ -1,9 +0,0 @@
{ ... }:
{
security.rtkit.enable = true; # Improves pipewire audio latency
services.pipewire = {
# For LMMS:
jack.enable = true;
};
}