Commit 060f582
home/base/gui/media.nix
@@ -0,0 +1,12 @@
+{pkgs, ...}:
+# processing audio/video
+{
+ home.packages = with pkgs; [
+ ffmpeg-full
+
+ # images
+ viu # Terminal image viewer with native support for iTerm and Kitty
+ imagemagick
+ graphviz
+ ];
+}
home/linux/gui/media.nix
@@ -0,0 +1,9 @@
+{pkgs, ...}: {
+ programs = {
+ mpv = {
+ enable = true;
+ defaultProfiles = ["gpu-hq"];
+ scripts = [pkgs.mpvScripts.mpris];
+ };
+ };
+}