mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-11-08 11:41:14 +00:00
21 lines
351 B
Nix
21 lines
351 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
services.pulseaudio.enable = false;
|
|
|
|
security.rtkit.enable = true;
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
pavucontrol
|
|
pasystray
|
|
alsa-utils
|
|
pulsemixer
|
|
easyeffects
|
|
];
|
|
}
|