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

22 lines
286 B
Nix
Raw Normal View History

2025-04-24 02:36:13 +01:00
{
config,
lib,
pkgs,
...
}:
with lib;
let
cfg = config.features.desktop.media.handbrake;
2025-04-24 02:36:13 +01:00
in
{
options.features.desktop.media.handbrake.enable = mkEnableOption "Enable handbrake";
2025-04-24 02:36:13 +01:00
config = mkIf cfg.enable {
home.packages = with pkgs; [
handbrake
];
};
}