Evie Litherland-Smith
ee34f667b9
Move hyprland specific audio/bluetooth packages into hyprland expression Increase frequency of nix cleanup, same duration
15 lines
308 B
Nix
15 lines
308 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Enable sound with pipewire.
|
|
sound.enable = true;
|
|
hardware.pulseaudio.enable = false;
|
|
security.rtkit.enable = true;
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
programs.noisetorch.enable = true;
|
|
}
|