From 21d7e61cbf1e064b7304899647f6e151e712d588 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 4 Dec 2024 12:00:09 -0500 Subject: [PATCH] Infini-DL360: add ffmpeg to system packages --- hosts/Infini-DL360/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/Infini-DL360/default.nix b/hosts/Infini-DL360/default.nix index cc88d34..6ce9a16 100644 --- a/hosts/Infini-DL360/default.nix +++ b/hosts/Infini-DL360/default.nix @@ -130,4 +130,8 @@ Group = "root"; }; }; + + environment.systemPackages = with pkgs; [ + ffmpeg-full + ]; }