aboutsummaryrefslogtreecommitdiffstats
path: root/home/desktop/multimedia.nix
blob: bbb7fc2698082c73bd50b2b7a2bef6ba19da8e05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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";
    };
  };
}