From fc9c6b0ed5082fc3f22cd73c3eacdbd6732728f2 Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Sun, 1 Sep 2024 19:16:15 +0530 Subject: [PATCH] feat: separate video editing module --- hosts/default/configuration.nix | 3 --- hosts/default/home.nix | 1 + hosts/default/video-editing.nix | 7 +++++++ 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 hosts/default/video-editing.nix diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 2ae48b3..191c92c 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -130,7 +130,6 @@ ags broot fd - ffmpeg-full file gnome-boxes go @@ -139,7 +138,6 @@ jellyfin-media-player jq just - kdenlive libreoffice-fresh mpv nil @@ -149,7 +147,6 @@ qrencode signal-desktop tor-browser-bundle-bin - tenacity virt-manager yazi yt-dlp diff --git a/hosts/default/home.nix b/hosts/default/home.nix index 90f6619..cb86402 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -16,6 +16,7 @@ ./python.nix ./rust.nix ./shell.nix + ./video-editing.nix ./zellij.nix # ./hud.nix ]; diff --git a/hosts/default/video-editing.nix b/hosts/default/video-editing.nix new file mode 100644 index 0000000..6f6a3a6 --- /dev/null +++ b/hosts/default/video-editing.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + ffmpeg-full + kdenlive + tenacity + ]; +}