dotfiles/nix/modules/home-manager/features/desktop/media/handbrake.nix

17 lines
248 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib;
{
options.homeManagerModules.handbrake.enable = mkEnableOption "Enable handbrake";
config = mkIf config.homeManagerModules.handbrake.enable {
home.packages = with pkgs; [ handbrake ];
};
}