Price Hiller
61671baedc
TODO: Modify `orion`'s filesystem file to be accurate to the laptop, not a VM
17 lines
299 B
Nix
17 lines
299 B
Nix
{ inputs, lib, pkgs, ... }:
|
|
|
|
{
|
|
hardware.pulseaudio.enable = false;
|
|
security.rtkit.enable = true;
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa = {
|
|
enable = true;
|
|
support32Bit = true;
|
|
};
|
|
pulse.enable = true;
|
|
wireplumber.enable = true;
|
|
jack.enable = true;
|
|
};
|
|
}
|