started modifing configuration structure

This commit is contained in:
2024-12-22 16:56:40 +09:00
parent 1030d3e37f
commit 87d132cb4f
37 changed files with 272 additions and 32 deletions

18
system/audio/default.nix Normal file
View File

@@ -0,0 +1,18 @@
{ ... }:
{
hardware.pulseaudio = {
support32Bit = true;
daemon.config = {
flat-volumes = "yes";
};
};
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
}