diff --git a/hosts/Rupert.nix b/hosts/Rupert.nix index d1d9fdb..715492f 100644 --- a/hosts/Rupert.nix +++ b/hosts/Rupert.nix @@ -17,13 +17,16 @@ in # ./open-pgsql.nix ]; - nixpkgs.overlays = [ + nixpkgs.overlays = let + libbluray = pkgs.libbluray.override { + withAACS = true; + withBDplus = true; + }; + in + [ ( self: super: { - libbluray = super.libbluray.override { - withAACS = true; - withBDplus = true; - }; + vlc = super.vlc.override { inherit libbluray; }; } ) ];