nix-config/modules/home-manager/desktop/media/handbrake.nix

21 lines
286 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib;
let
cfg = config.features.desktop.media.handbrake;
in
{
options.features.desktop.media.handbrake.enable = mkEnableOption "Enable handbrake";
config = mkIf cfg.enable {
home.packages = with pkgs; [
handbrake
];
};
}