From 08de91165fc2c645dbd498d7e73a62234a7552e3 Mon Sep 17 00:00:00 2001 From: fruchti Date: Fri, 4 Jul 2025 09:11:05 +0200 Subject: [PATCH] Rupert: Make bluray override compile less stuff --- hosts/Rupert.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) 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; }; } ) ];