1
1
Fork 0

beatific: add ffmpeg

This commit is contained in:
Tim Van Baak 2024-08-07 19:24:27 -07:00
parent 052159afb7
commit b27f99616a
4 changed files with 3 additions and 3 deletions

View File

@ -77,7 +77,6 @@
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
ffmpeg # omnipotent media tool
pv # zfs send progress meter pv # zfs send progress meter
smartmontools # provides smartctl drive inspector smartmontools # provides smartctl drive inspector
]; ];

View File

@ -25,7 +25,6 @@
swapDevices = [ { device = "/swap"; size = 1024; } ]; swapDevices = [ { device = "/swap"; size = 1024; } ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
ffmpeg
lsof # list open files lsof # list open files
mkpasswd # used for setting SMB passwords, I think? mkpasswd # used for setting SMB passwords, I think?
samba # provides smbpasswd, mostly samba # provides smbpasswd, mostly

View File

@ -74,7 +74,6 @@
bitwarden bitwarden
bitwarden-cli bitwarden-cli
comic-mono comic-mono
ffmpeg
firefox firefox
gnome.gnome-terminal gnome.gnome-terminal
gthumb gthumb

View File

@ -63,6 +63,8 @@ in {
cp = "cp -rp"; cp = "cp -rp";
xo = "xdg-open"; xo = "xdg-open";
smv = "rsync -v --remove-source-files"; smv = "rsync -v --remove-source-files";
ffprobe = "ffprobe -hide_banner";
ffmpeg = "ffmpeg -hide_banner";
".." = "cd .."; ".." = "cd ..";
"..." = "cd ../.."; "..." = "cd ../..";
"...." = "cd ../../.."; "...." = "cd ../../..";
@ -104,6 +106,7 @@ in {
curl # omnipotent URL tool curl # omnipotent URL tool
duf # disk-free checker duf # disk-free checker
exiftool # media tag tool exiftool # media tag tool
ffmpeg # omnipotent media tool
file # file type inspector file # file type inspector
htmlq # jq for html htmlq # jq for html
jq # jq for json jq # jq for json