Initial import

This commit is contained in:
2026-06-10 18:36:32 +02:00
commit 41ff233f31
11 changed files with 321 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{ pkgs, ... }:
{
hardware.pulseaudio.enable = false;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
environment.systemPackages = with pkgs; [
easyeffects
helvum
pavucontrol
qpwgraph
];
}