moved bluray deps to extra

This commit is contained in:
Sven Vogel 2023-11-17 16:30:35 +01:00
parent 980581249d
commit ba7a509a33
2 changed files with 15 additions and 5 deletions

View File

@ -20,6 +20,7 @@ in
./.luks-swap.nix
./fonts.nix
./extra/dvd.nix
./extra/bluray.nix
];
hardware.bluetooth.enable = true;
@ -196,11 +197,6 @@ in
openocd # on-chip programming and debugging support
avrdude # esp32 and others support
libdvdcss
libaacs
libbdplus
libbluray
devbox
filelight
ffmpeg-full

14
extra/bluray.nix Normal file
View File

@ -0,0 +1,14 @@
{ pkgs, config, ... }: {
# libaacs requires some extra configuration
# an extra VUK database setup in the users XDG config directory
# can be downloaded from: http://fvonline-db.bplaced.net/
# and must be placed in: ~/.config/aaacs/KEYDB.cfg
# packages needed for decrypting Blurays
environment.systemPackages = with pkgs; [
libdvdcss
libaacs
libbdplus
libbluray
];
}