mirror of
https://github.com/Username404-59/Dotfiles-NixOS.git
synced 2026-07-03 21:08:08 +02:00
Compare commits
4 Commits
dec3e9b760
...
197bd0fb60
| Author | SHA1 | Date | |
|---|---|---|---|
| 197bd0fb60 | |||
| a269602d5e | |||
| 950e2da40b | |||
| 60e6e884c3 |
@ -62,6 +62,7 @@ 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,18 +4,14 @@
|
|||||||
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 = "2.0.0-dev";
|
version = lsfg-vk.version;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = lsfg-vk.src;
|
||||||
owner = "PancakeTAS";
|
|
||||||
repo = "lsfg-vk";
|
|
||||||
tag = "v${finalAttrs.version}";
|
|
||||||
hash = "sha256-Qb3vufCzNpM1r+vgo8M9nnA7CENgGTithWG0oXqLKbI=";
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
llvmPackages.clang-tools
|
llvmPackages.clang-tools
|
||||||
|
|||||||
9
modules/audio.nix
Normal file
9
modules/audio.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
security.rtkit.enable = true; # Improves pipewire audio latency
|
||||||
|
services.pipewire = {
|
||||||
|
# For LMMS:
|
||||||
|
jack.enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user