From 63f5c981da81dad97baa26bb47bd22c5344bad3d Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Mon, 27 Oct 2025 17:14:48 -0300 Subject: [PATCH] feat(apps): ffmpeg binary alias --- home/guz/media.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/guz/media.nix b/home/guz/media.nix index b657570..17cfc6c 100644 --- a/home/guz/media.nix +++ b/home/guz/media.nix @@ -11,4 +11,9 @@ reaper ]; + # Easier access to krita + home.file.".bin/ffmpeg" = { + executable = true; + source = lib.getExe pkgs.ffmpeg; + }; }