mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 15:03:55 -05:00
19 lines
383 B
Nix
19 lines
383 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
# Enable sound with pipewire.
|
|
sound.enable = true;
|
|
hardware.pulseaudio = {
|
|
enable = lib.mkForce false;
|
|
# Enables extra codecs like aptx.
|
|
package = pkgs.pulseaudioFull;
|
|
};
|
|
security.rtkit.enable = true;
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
}
|