diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2018-05-15 22:48:46 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2018-05-15 22:48:46 +0200 |
commit | 8edb77ad82fdb4484f81c80e04ab2bcecff9a269 (patch) | |
tree | d80f6161071047bc62653df9e53304873c48fbac | |
parent | 3d1dfc09e4880af9f13a88e9e88e16ce68533b2e (diff) | |
download | nixos-8edb77ad82fdb4484f81c80e04ab2bcecff9a269.tar nixos-8edb77ad82fdb4484f81c80e04ab2bcecff9a269.tar.gz nixos-8edb77ad82fdb4484f81c80e04ab2bcecff9a269.tar.bz2 nixos-8edb77ad82fdb4484f81c80e04ab2bcecff9a269.tar.xz nixos-8edb77ad82fdb4484f81c80e04ab2bcecff9a269.zip |
Fix orientation
-rw-r--r-- | bragi.nix | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 | ||