dots/modules/hosts/common/linux/ripping.nix
Gene Liverman 3225c34bd0 Add tooling to watch and backup DVDs and Blu-rays
This is all about backing my stuff up from physical disk to Jellyfin for
personal consumption.
2024-12-23 10:38:41 -05:00

20 lines
356 B
Nix

{ pkgs, ... }: {
# Be sure this is added if on NixOS
# boot.kernelModules = [ "sg" ];
# Also, get KEYDB.cfg per https://wiki.archlinux.org/title/Blu-ray
environment.systemPackages = with pkgs; [
handbrake
libaacs
libbdplus
libbluray
libdvdcss
libdvdnav
libdvdread
makemkv
mkvtoolnix
mkvtoolnix-cli
];
}