mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
18 lines
336 B
Nix
18 lines
336 B
Nix
|
{ lib, ... }:
|
||
|
let
|
||
|
cfg = config.sconfig.pipewire;
|
||
|
in
|
||
|
{
|
||
|
options.sconfig.pipewire = lib.mkEnableOption "Enable Pipewire";
|
||
|
|
||
|
config = lib.mkIf cfg {
|
||
|
hardware.pulseaudio.enable = false;
|
||
|
services.pipewire = {
|
||
|
enable = true;
|
||
|
pulse.enable = true;
|
||
|
alsa.enable = true;
|
||
|
alsa.support32Bit = true;
|
||
|
};
|
||
|
};
|
||
|
}
|