meta: Allow the playback of Bluray disks

This commit is contained in:
2022-03-31 16:53:42 +02:00
parent f981ff5bf6
commit 95a96882b0
12 changed files with 128 additions and 32 deletions

View File

@@ -0,0 +1,15 @@
{ pkgs, config, lib, ... }:
let
cfg = config.ptw.programs.bluray;
in {
options.ptw.programs.bluray = {
enable = lib.mkEnableOption "Enable bluray playback and decoding. Will rebuild a lot of packages";
};
config = lib.mkIf cfg.enable {
nixpkgs.config.overlays = [
(import ../../../overlays/bluray.nix)
];
};
}