From 2d6a9d987682daad03eea17c86ad0c36b1ac22d3 Mon Sep 17 00:00:00 2001 From: fruchti Date: Mon, 7 Apr 2025 09:15:57 +0200 Subject: [PATCH] Rupert: Configure BluRay playback --- hosts/Rupert.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hosts/Rupert.nix b/hosts/Rupert.nix index f2f822f..451ac50 100644 --- a/hosts/Rupert.nix +++ b/hosts/Rupert.nix @@ -17,6 +17,17 @@ in # ./open-pgsql.nix ]; + nixpkgs.overlays = [ + ( + self: super: { + libbluray = super.libbluray.override { + withAACS = true; + withBDplus = true; + }; + } + ) + ]; + boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; boot.kernelParams = [ "acpi=force" "reboot=bios" ];