dot(pw): mic name
Some checks failed
Shell Script Check & Format / shell-check (push) Has been cancelled

This commit is contained in:
js0ny 2026-03-15 21:49:09 +00:00
parent f740b78081
commit 877cabbb42
2 changed files with 20 additions and 0 deletions

View file

@ -2,6 +2,7 @@
imports = [ imports = [
./xremap.nix ./xremap.nix
./diskutil.nix ./diskutil.nix
../hardware/pipewire.nix
]; ];
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;

View file

@ -0,0 +1,19 @@
{...}: {
environment.etc."wireplumber/wireplumber.conf.d/51-rename-alsa-devices.conf".text = ''
monitor.alsa.rules = [
{
matches = [
{
node.name = "alsa_input.pci-0000_65_00.6.analog-stereo"
}
]
actions = {
update-props = {
node.description = ""
}
}
}
]
'';
}