adyya-flake/audio.mod.nix
Ittihadyya 2c9c995c51
Some checks failed
/ Check formatting (push) Has been cancelled
stupid fucking missing colon made me waste half an hour, jeez
2025-01-08 01:39:47 +02:00

26 lines
489 B
Nix

{
personal.modules = [
{
programs.noisetorch.enable = true;
services.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
jack.enable = true;
pulse.enable = true;
};
}
];
personal.home_modules = [
(
{pkgs, ...}: {
home.packages = with pkgs; [
pwvucontrol
pw-volume
pw-viz
];
}
)
];
}