nix-dotfiles/home-manager/modules/ffmpeg.nix

5 lines
92 B
Nix

{pkgs, ...}: {
home.packages = [
(pkgs.ffmpeg-full.override {withXcb = true;})
];
}