use pipewire as audio system
This commit is contained in:
parent
cfc8962db5
commit
e504e6ac2b
2 changed files with 12 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
imports = [
|
||||
./steam
|
||||
./kodi/system-config.nix
|
||||
./pipewire.nix
|
||||
];
|
||||
home-manager.users.darkkirb.imports =
|
||||
if config.isGraphical then
|
||||
|
|
11
programs/desktop/pipewire.nix
Normal file
11
programs/desktop/pipewire.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue