This commit is contained in:
2026-03-23 22:32:55 +00:00
parent 2325e48006
commit 95c859b3f4
2 changed files with 16 additions and 0 deletions

View File

@@ -11,6 +11,7 @@
./programs.nix ./programs.nix
./fonts.nix ./fonts.nix
./hardware.nix ./hardware.nix
./sound.nix
./virtualisation.nix ./virtualisation.nix
]; ];
} }

15
system/sound.nix Normal file
View File

@@ -0,0 +1,15 @@
{ ... }:
{
hardware = {
sound.enable = true;
};
software.pulseaudio.enable = false;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
}
}