diff options
author | Adrian Kummerlaender | 2018-04-21 19:39:05 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2018-04-21 19:39:05 +0200 |
commit | add1b6b331094d1bb408377696a9ff93facd478f (patch) | |
tree | 0bb08bd05e0b8912978281e6bbc7e67d72a480ee | |
parent | b5205852ac22047e081535f45d0689b16aba641f (diff) | |
download | nixos_system-add1b6b331094d1bb408377696a9ff93facd478f.tar nixos_system-add1b6b331094d1bb408377696a9ff93facd478f.tar.gz nixos_system-add1b6b331094d1bb408377696a9ff93facd478f.tar.bz2 nixos_system-add1b6b331094d1bb408377696a9ff93facd478f.tar.lz nixos_system-add1b6b331094d1bb408377696a9ff93facd478f.tar.xz nixos_system-add1b6b331094d1bb408377696a9ff93facd478f.tar.zst nixos_system-add1b6b331094d1bb408377696a9ff93facd478f.zip |
Enable support for 32 bit audio
-rw-r--r-- | configuration.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configuration.nix b/configuration.nix index 6c443ac..bc39652 100644 --- a/configuration.nix +++ b/configuration.nix @@ -21,8 +21,11 @@ sound.enable = true; hardware = { - pulseaudio.enable = true; opengl.driSupport32Bit = true; + pulseaudio = { + enable = true; + support32Bit = true; + }; }; i18n = { |