diff options
author | tv <tv@krebsco.de> | 2019-04-08 19:05:25 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2019-04-08 19:05:25 +0200 |
commit | 04f6ca5b5cb85675bc7b0c89279c26d59f33e8f0 (patch) | |
tree | 12ed5ef4286972e9b35228a4aa9ae6f5de6fdf87 /tv/2configs | |
parent | 54f9c783e48b9084c6f461d9203069fed2afd8de (diff) |
tv pulse: use pkgs.pkgsi686Linux
Diffstat (limited to 'tv/2configs')
-rw-r--r-- | tv/2configs/pulse.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tv/2configs/pulse.nix b/tv/2configs/pulse.nix index 2e679bd..ea39701 100644 --- a/tv/2configs/pulse.nix +++ b/tv/2configs/pulse.nix @@ -1,10 +1,12 @@ -{ config, lib, pkgs, pkgs_i686, ... }: +{ config, lib, pkgs, ... }: with import <stockholm/lib>; let pkg = pkgs.pulseaudioLight; runDir = "/run/pulse"; + pkgs_i686 = pkgs.pkgsi686Linux; + support32Bit = pkgs.stdenv.isx86_64 && pkgs_i686.alsaLib != null && |