42 lines
742 B
Nix
42 lines
742 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.grimmShared;
|
|
in
|
|
{
|
|
config =
|
|
with cfg;
|
|
lib.mkIf (enable && sound.enable) {
|
|
sound.enable = true;
|
|
hardware.pulseaudio.enable = false;
|
|
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
jack.enable = true; # osu uses jack
|
|
lowLatency.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
pwvucontrol
|
|
playerctl
|
|
openal
|
|
pulseaudio
|
|
];
|
|
};
|
|
|
|
imports = [
|
|
./spotify.nix
|
|
./midi.nix
|
|
./pipewireLowLatency.nix
|
|
];
|
|
|
|
options.grimmShared.sound.enable = lib.mkEnableOption "whether to enable sound";
|
|
}
|