diff options
| author | adikro <adikro@disroot.org> | 2025-12-20 03:14:45 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2025-12-20 03:14:45 +0100 |
| commit | 791bc419b6dac7c70951981ef6b34cdf85828470 (patch) | |
| tree | 56d0962fdf829ae942feb1344763e54dbc3c89a3 /hm/soft/media.nix | |
| parent | e60410393cea222b16743a1a87f29c06b9b3543b (diff) | |
absolutely massive rewrite, made (almost) everything modular with changes to come
Diffstat (limited to 'hm/soft/media.nix')
| -rw-r--r-- | hm/soft/media.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/hm/soft/media.nix b/hm/soft/media.nix new file mode 100644 index 0000000..0184957 --- /dev/null +++ b/hm/soft/media.nix @@ -0,0 +1,27 @@ +{ config, lib, pkgs, ... }: +let + cfg = config.szpont.hm.soft.media; +in +{ + options.szpont.hm.soft.media.enable = lib.mkEnableOption "media playback and processing tools"; + + config = lib.mkIf cfg.enable { + programs.mpv = { + enable = true; + config = { + + }; + }; + programs.yt-dlp = { + enable = true; + package = pkgs.yt-dlp_git; + }; + + home.packages = with pkgs; [ + # syncplay + syncplay-nogui + ffmpeg + imagemagick + ]; + }; +} |
