diff options
Diffstat (limited to 'bragi.nix')
-rw-r--r-- | bragi.nix | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -31,6 +31,14 @@ | |||
31 | gmeSupport = false; | 31 | gmeSupport = false; |
32 | game-music-emu = null; | 32 | game-music-emu = null; |
33 | }; | 33 | }; |
34 | mpv = pkgs.stdenv.lib.overrideDerivation pkgs.mpv (oldAttrs: { | ||
35 | buildInputs = oldAttrs.buildInputs ++ [pkgs.makeWrapper] | ||
36 | postInstall = '' | ||
37 | wrapProgram $out/bin/mpv \ | ||
38 | --set JACK_PROMISCUOUS_SERVER 1 \ | ||
39 | --run "umask 0" | ||
40 | ''; | ||
41 | }); | ||
34 | }; | 42 | }; |
35 | 43 | ||
36 | environment.systemPackages = with pkgs; [ | 44 | environment.systemPackages = with pkgs; [ |