NixOS/extra/dvd.nix

8 lines
165 B
Nix
Raw Permalink Normal View History

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