grimm-nixos-laptop/common/sound/default.nix

34 lines
684 B
Nix
Raw Normal View History

2024-04-10 16:51:28 +02:00
{ grimm-shared-inputs, pkgs, config, lib, ... }:
let
2024-03-24 16:59:47 +01:00
cfg = config.grimmShared;
2024-04-10 16:51:28 +02:00
in
{
2024-04-26 21:36:24 +02:00
config = with cfg; lib.mkIf (enable && sound.enable) {
2024-03-24 16:59:47 +01:00
sound.enable = true;
hardware.pulseaudio.enable = false;
2024-04-21 16:02:55 +02:00
2024-03-24 16:59:47 +01:00
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; [
2024-04-07 10:33:55 +02:00
pwvucontrol
2024-03-24 16:59:47 +01:00
playerctl
2024-04-13 19:16:33 +02:00
openal
2024-03-24 16:59:47 +01:00
pulseaudio
];
};
imports = [
./spotify.nix
2024-04-26 21:36:24 +02:00
./midi.nix
];
2024-04-26 21:36:24 +02:00
options.grimmShared.sound.enable = lib.mkEnableOption "whether to enable sound";
2024-03-24 16:59:47 +01:00
}