1

feat: separate video editing module

This commit is contained in:
Himadri Bhattacharjee
2024-09-01 19:16:15 +05:30
parent 5b1326eb1c
commit fc9c6b0ed5
3 changed files with 8 additions and 3 deletions

View File

@@ -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

View File

@@ -16,6 +16,7 @@
./python.nix
./rust.nix
./shell.nix
./video-editing.nix
./zellij.nix
# ./hud.nix
];

View File

@@ -0,0 +1,7 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
ffmpeg-full
kdenlive
tenacity
];
}