aboutsummaryrefslogtreecommitdiffstats
path: root/home/desktop/multimedia.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/desktop/multimedia.nix')
-rw-r--r--home/desktop/multimedia.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/home/desktop/multimedia.nix b/home/desktop/multimedia.nix
new file mode 100644
index 0000000..bbb7fc2
--- /dev/null
+++ b/home/desktop/multimedia.nix
@@ -0,0 +1,33 @@
+{pkgs, ...}: {
+ home.packages = with pkgs; [
+ audacity
+ curtail
+ darktable
+ feishin
+ ffmpeg
+ gimp3
+ glaxnimate
+ handbrake
+ imagemagick
+ inkscape
+ jellyfin-media-player
+ mousai
+ obs-studio
+ picard
+ scribus
+ tidal-dl
+ vhs
+ vlc
+ ];
+
+ programs.mpv = {
+ enable = true;
+ config = {
+ gpu-context = "wayland";
+ hwdec = "auto-safe";
+ profile = "gpu-hq";
+ ytdl-format = "bestvideo+bestaudio";
+ vo = "gpu";
+ };
+ };
+}