This repository has been archived on 2025-03-05. You can view files and clone it, but cannot push or open issues or pull requests.
2023-04-12 19:30:43 +02:00

30 lines
443 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let cfg = config.features.desktop.media;
in {
options.features.desktop.media.enable =
mkEnableOption "enable media features";
config = mkIf cfg.enable {
home.packages = with pkgs; [
ffmpeg
fractal
gphoto2
handbrake
libsForQt5.kdenlive
makemkv
mpv
obs-studio
plexamp
uxplay
vlc
webcord
youtube-dl
];
};
}