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

17 lines
256 B
Nix
Raw Normal View History

2024-11-30 20:41:07 +00:00
{
config,
lib,
pkgs,
...
}:
2024-12-10 21:40:33 +00:00
with lib;
2024-11-30 20:41:07 +00:00
{
2024-12-10 21:40:33 +00:00
options.features.desktop.media.handbrake.enable = mkEnableOption "Enable handbrake";
2024-11-30 20:41:07 +00:00
2024-12-10 21:40:33 +00:00
config = mkIf config.features.desktop.media.handbrake.enable {
2024-11-30 20:41:07 +00:00
home.packages = with pkgs; [ handbrake ];
};
}