- Switch Zen browser from flatpak to 0xc000022070's flake. - Add ffmpeg scripts for transcoding and uploading video. - Add ffmpeg-full package. - Delete workaround for nixGL with OBS-studio.
10 lines
160 B
Nix
10 lines
160 B
Nix
{ pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
vlc
|
|
ffmpeg-full
|
|
];
|
|
services.flatpak.packages = [
|
|
"no.mifi.losslesscut/x86_64/stable"
|
|
];
|
|
}
|