nix-config/modules/pipewire/default.nix
Donovan Glover 43a07cc8d9
treewide: Switch from alejandra to nixpkgs-fmt
Neither nixfmt nor alejandra support the "standard" way to syntax
highlight multi-line strings in Nix, so nixpkgs-fmt is the only viable
solution.
2023-06-11 09:37:27 -04:00

21 lines
291 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;
}