mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-29 19:54:48 +01:00
57856917aa
This concludes the unification of modules. Future work could include combining modules that are unlikely to be used separately.
23 lines
292 B
Nix
23 lines
292 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.pipewire = {
|
|
enable = true;
|
|
|
|
alsa = {
|
|
enable = true;
|
|
support32Bit = true;
|
|
};
|
|
|
|
pulse.enable = true;
|
|
|
|
lowLatency.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
pulseaudio
|
|
];
|
|
|
|
security.rtkit.enable = true;
|
|
}
|