mirror of
https://github.com/Username404-59/Dotfiles-NixOS.git
synced 2026-07-03 21:08:08 +02:00
Compare commits
No commits in common. "197bd0fb60ee6c7c78967003888ab0f7c3a25408" and "dec3e9b7606680eeddee7e0e7d5eb48cc8d2520f" have entirely different histories.
197bd0fb60
...
dec3e9b760
@ -62,7 +62,6 @@ in
|
|||||||
./modules/ccache.nix
|
./modules/ccache.nix
|
||||||
./modules/networking.nix
|
./modules/networking.nix
|
||||||
./modules/mesa.nix
|
./modules/mesa.nix
|
||||||
./modules/audio.nix
|
|
||||||
|
|
||||||
# ISO installer building stuff:
|
# ISO installer building stuff:
|
||||||
./ISO/iso.nix
|
./ISO/iso.nix
|
||||||
|
|||||||
@ -4,14 +4,18 @@
|
|||||||
cmake,
|
cmake,
|
||||||
llvmPackages,
|
llvmPackages,
|
||||||
qt6,
|
qt6,
|
||||||
lsfg-vk,
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
llvmPackages.stdenv.mkDerivation (finalAttrs: {
|
llvmPackages.stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "lsfg-vk-ui";
|
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 = [
|
nativeBuildInputs = [
|
||||||
llvmPackages.clang-tools
|
llvmPackages.clang-tools
|
||||||
|
|||||||
@ -1,9 +0,0 @@
|
|||||||
{ ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
security.rtkit.enable = true; # Improves pipewire audio latency
|
|
||||||
services.pipewire = {
|
|
||||||
# For LMMS:
|
|
||||||
jack.enable = true;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue
Block a user