NixOS/extra/dvd.nix

8 lines
165 B
Nix

{ pkgs, ... }: {
# packages needed for decrypting DVDs with handbrake
environment.systemPackages = with pkgs; [
libdvdcss
handbrake
];
}