feat: Added audio stuff
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled

This commit is contained in:
2026-02-03 21:10:05 +05:30
parent 63a4fba675
commit d688fc0eef
7 changed files with 97 additions and 32 deletions

View File

@@ -6,6 +6,8 @@
imports = [
# ./alvr.nix
./easyeffects.nix
./mixid.nix
./vr.nix
./helvum.nix
];
}

View File

@@ -0,0 +1,3 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [helvum];
}

4
nixos/ryu/apps/mixid.nix Normal file
View File

@@ -0,0 +1,4 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [mixid];
services.udev.packages = with pkgs; [mixid];
}