summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2017-09-03 23:35:49 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2017-09-03 23:35:49 +0200
commit9dc44d6918849b87fe12c5b91e5430725ad1af81 (patch)
tree8f33cfcad3b2f86b2e522289c9cee73f579201b5
parentadb9b5b98b74499f5996fb2ad3faede61b033a49 (diff)
downloadnixos-9dc44d6918849b87fe12c5b91e5430725ad1af81.tar
nixos-9dc44d6918849b87fe12c5b91e5430725ad1af81.tar.gz
nixos-9dc44d6918849b87fe12c5b91e5430725ad1af81.tar.bz2
nixos-9dc44d6918849b87fe12c5b91e5430725ad1af81.tar.xz
nixos-9dc44d6918849b87fe12c5b91e5430725ad1af81.zip
-rw-r--r--bragi.nix28
1 files changed, 14 insertions, 14 deletions
diff --git a/bragi.nix b/bragi.nix
index ad7fe3cd..dc0c7a58 100644
--- a/bragi.nix
+++ b/bragi.nix
@@ -145,26 +145,26 @@ in rec {
145 }; 145 };
146 146
147 services.trivmix = { 147 services.trivmix = {
148 mpdmix0 = { connectOut = "outnode0:in"; group = "mpd"; initial = "-35dB"; }; 148 "mpdmix0" = { connectOut = "outnode0:in"; group = "mpd"; initial = "-35dB"; };
149 mpdmix1 = { connectOut = "outnode1:in"; group = "mpd"; initial = "-35dB"; }; 149 "mpdmix1" = { connectOut = "outnode1:in"; group = "mpd"; initial = "-35dB"; };
150 150
151 passmix0 = { connectOut = "outnode0:in"; connectIn = "system:capture_5"; group = "vali_out"; initial = "-5dB"; }; 151 "passmix0" = { connectOut = "outnode0:in"; connectIn = "system:capture_5"; group = "vali_out"; initial = "-5dB"; };
152 passmix1 = { connectOut = "outnode1:in"; connectIn = "system:capture_6"; group = "vali_out"; initial = "-5dB"; }; 152 "passmix1" = { connectOut = "outnode1:in"; connectIn = "system:capture_6"; group = "vali_out"; initial = "-5dB"; };
153 153
154 passmix2 = { connectOut = "system:playback_5"; connectIn = "system:capture_1"; group = "mic_out"; initial = "1"; }; 154 "passmix2" = { connectOut = "system:playback_5"; connectIn = "system:capture_1"; group = "mic_out"; initial = "1"; };
155 passmix3 = { connectOut = "system:playback_6"; connectIn = "system:capture_1"; group = "mic_out"; initial = "1"; }; 155 "passmix3" = { connectOut = "system:playback_6"; connectIn = "system:capture_1"; group = "mic_out"; initial = "1"; };
156 156
157 passmix4 = { connectOut = "outnode0:in"; connectIn = "system:capture_7"; group = "hel_out"; initial = "-5dB"; }; 157 "passmix4" = { connectOut = "outnode0:in"; connectIn = "system:capture_7"; group = "hel_out"; initial = "-5dB"; };
158 passmix5 = { connectOut = "outnode1:in"; connectIn = "system:capture_8"; group = "hel_out"; initial = "-5dB"; }; 158 "passmix5" = { connectOut = "outnode1:in"; connectIn = "system:capture_8"; group = "hel_out"; initial = "-5dB"; };
159 159
160 outnode0 = { initial = "1"; adjustable = false; }; 160 "outnode0" = { initial = "1"; adjustable = false; };
161 outnode1 = { initial = "1"; adjustable = false; }; 161 "outnode1" = { initial = "1"; adjustable = false; };
162 162
163 headphones0 = { connectOut = "system:playback_3"; connectIn = "outnode0:out"; group = "headphones"; initial = "1"; }; 163 "headphones0" = { connectOut = "system:playback_3"; connectIn = "outnode0:out"; group = "headphones"; initial = "1"; };
164 headphones1 = { connectOut = "system:playback_4"; connectIn = "outnode1:out"; group = "headphones"; initial = "1"; }; 164 "headphones1" = { connectOut = "system:playback_4"; connectIn = "outnode1:out"; group = "headphones"; initial = "1"; };
165 165
166 speakers0 = { connectOut = "system:playback_7"; connectIn = "outnode0:out"; group = "speakers"; initial = "0"; }; 166 "speakers0" = { connectOut = "system:playback_7"; connectIn = "outnode0:out"; group = "speakers"; initial = "0"; };
167 speakers1 = { connectOut = "system:playback_8"; connectIn = "outnode1:out"; group = "speakers"; initial = "0"; }; 167 "speakers1" = { connectOut = "system:playback_8"; connectIn = "outnode1:out"; group = "speakers"; initial = "0"; };
168 }; 168 };
169 169
170 systemd.services.mpdmix0.requiredBy = [ "mpd.service" ]; 170 systemd.services.mpdmix0.requiredBy = [ "mpd.service" ];