summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2018-05-15 22:48:46 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2018-05-15 22:48:46 +0200
commit8edb77ad82fdb4484f81c80e04ab2bcecff9a269 (patch)
treed80f6161071047bc62653df9e53304873c48fbac
parent3d1dfc09e4880af9f13a88e9e88e16ce68533b2e (diff)
downloadnixos-8edb77ad82fdb4484f81c80e04ab2bcecff9a269.tar
nixos-8edb77ad82fdb4484f81c80e04ab2bcecff9a269.tar.gz
nixos-8edb77ad82fdb4484f81c80e04ab2bcecff9a269.tar.bz2
nixos-8edb77ad82fdb4484f81c80e04ab2bcecff9a269.tar.xz
nixos-8edb77ad82fdb4484f81c80e04ab2bcecff9a269.zip
Fix orientation
-rw-r--r--bragi.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/bragi.nix b/bragi.nix
index 8d28168f..a77f5dd1 100644
--- a/bragi.nix
+++ b/bragi.nix
@@ -213,11 +213,11 @@ in rec {
213 "outnode0" = { initial = "1"; adjustable = false; }; 213 "outnode0" = { initial = "1"; adjustable = false; };
214 "outnode1" = { initial = "1"; adjustable = false; }; 214 "outnode1" = { initial = "1"; adjustable = false; };
215 215
216 "headphones0" = { connectOut = "system:playback_3"; connectIn = "outnode0:out"; group = "headphones"; initial = "1"; balance = "right"; }; 216 "headphones0" = { connectOut = "system:playback_3"; connectIn = "outnode0:out"; group = "headphones"; initial = "1"; balance = "left"; };
217 "headphones1" = { connectOut = "system:playback_4"; connectIn = "outnode1:out"; group = "headphones"; initial = "1"; balance = "left"; }; 217 "headphones1" = { connectOut = "system:playback_4"; connectIn = "outnode1:out"; group = "headphones"; initial = "1"; balance = "right"; };
218 218
219 "speakers0" = { connectOut = "system:playback_7"; connectIn = "outnode0:out"; group = "speakers"; initial = "0"; balance = "right"; }; 219 "speakers0" = { connectOut = "system:playback_7"; connectIn = "outnode0:out"; group = "speakers"; initial = "0"; balance = "left"; };
220 "speakers1" = { connectOut = "system:playback_8"; connectIn = "outnode1:out"; group = "speakers"; initial = "0"; balance = "left"; }; 220 "speakers1" = { connectOut = "system:playback_8"; connectIn = "outnode1:out"; group = "speakers"; initial = "0"; balance = "right"; };
221 }; 221 };
222 }; 222 };
223 223