nixos/hosts/kim/audio.nix
Annika Merris e92487487e Moved Audio Config to New File
Added service to set up passthrough from my work laptop
2024-05-24 12:44:04 -04:00

29 lines
957 B
Nix

{ config, lib, 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;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
#media-session.enable = true;
};
systemd.user.services.pipewire-patching = {
description = "pipewire patches";
wantedBy = [ "default.target" ];
script = ''
pw-link "alsa_output.pci-0000_0e_00.4.iec958-stereo:playback_FL" "alsa_input.pci-0000_0e_00.4.analog-stereo:capture_FL"
pw-link "alsa_output.pci-0000_0e_00.4.iec958-stereo:playback_FR" "alsa_input.pci-0000_0e_00.4.analog-stereo:capture_FR"
'';
};
}