summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2015-11-05 22:56:20 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2015-11-05 22:56:20 +0100
commit030f7290af1f836ef141688a8157e6b4f66ba492 (patch)
tree98840b02c04d9595b3889fe4881b7c4bb2896ccb
parent5cbd9a9e58a1dc85368b886dcabfd2f8b5bf7245 (diff)
downloadnixos-030f7290af1f836ef141688a8157e6b4f66ba492.tar
nixos-030f7290af1f836ef141688a8157e6b4f66ba492.tar.gz
nixos-030f7290af1f836ef141688a8157e6b4f66ba492.tar.bz2
nixos-030f7290af1f836ef141688a8157e6b4f66ba492.tar.xz
nixos-030f7290af1f836ef141688a8157e6b4f66ba492.zip
(hopefully) fixed sound
-rw-r--r--vali.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/vali.nix b/vali.nix
index a6647585..89e104e7 100644
--- a/vali.nix
+++ b/vali.nix
@@ -131,6 +131,13 @@ rec {
131 }; 131 };
132 132
133 hardware.opengl.driSupport32Bit = true; 133 hardware.opengl.driSupport32Bit = true;
134
135 sound = {
136 enable = true;
137 extraConfig = ''
138 defaults.pcm.!card 2
139 '';
140 };
134 141
135 nixpkgs.config.allowUnfree = true; 142 nixpkgs.config.allowUnfree = true;
136} 143}