use pipewire as audio system

This commit is contained in:
Charlotte 🦝 Delenk 2024-11-19 10:37:01 +01:00
parent cfc8962db5
commit e504e6ac2b
2 changed files with 12 additions and 0 deletions

View file

@ -3,6 +3,7 @@
imports = [
./steam
./kodi/system-config.nix
./pipewire.nix
];
home-manager.users.darkkirb.imports =
if config.isGraphical then

View file

@ -0,0 +1,11 @@
{ ... }:
{
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
}