moved bluray deps to extra
This commit is contained in:
parent
980581249d
commit
ba7a509a33
|
@ -20,6 +20,7 @@ in
|
||||||
./.luks-swap.nix
|
./.luks-swap.nix
|
||||||
./fonts.nix
|
./fonts.nix
|
||||||
./extra/dvd.nix
|
./extra/dvd.nix
|
||||||
|
./extra/bluray.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
|
@ -196,11 +197,6 @@ in
|
||||||
openocd # on-chip programming and debugging support
|
openocd # on-chip programming and debugging support
|
||||||
avrdude # esp32 and others support
|
avrdude # esp32 and others support
|
||||||
|
|
||||||
libdvdcss
|
|
||||||
libaacs
|
|
||||||
libbdplus
|
|
||||||
libbluray
|
|
||||||
|
|
||||||
devbox
|
devbox
|
||||||
filelight
|
filelight
|
||||||
ffmpeg-full
|
ffmpeg-full
|
||||||
|
|
|
@ -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
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue