Make handbrake configurable

This commit is contained in:
Oliver Davies 2024-11-30 20:41:07 +00:00
parent 818ecfa618
commit e09de22f4b
4 changed files with 16 additions and 1 deletions
nix/modules/home-manager/features/desktop/media

View file

@ -1,6 +1,7 @@
{
imports = [
./gimp.nix
./handbrake.nix
./kdenlive.nix
./mpv.nix
./pocket-casts.nix

View file

@ -0,0 +1,14 @@
{
config,
lib,
pkgs,
...
}:
{
options.features.desktop.media.handbrake.enable = lib.mkEnableOption "Enable handbrake";
config = lib.mkIf config.features.desktop.media.handbrake.enable {
home.packages = with pkgs; [ handbrake ];
};
}