nixos/home/media.nix
Evie Litherland-Smith 461d2580dc Change how syncthing is configured
Revert syncthing to using own user space in /var/lib/syncthing and set
to only run on server
User home-manager syncthing service (with tray) for other machines

Remove mpd/mpc, and spot
2023-10-26 16:49:11 +01:00

20 lines
305 B
Nix

{ config, lib, pkgs, ... }:
{
programs = {
mpv = {
enable = true;
scripts = with pkgs.mpvScripts; [
mpris
autoload
thumbfast
thumbnail
sponsorblock
quality-menu
webtorrent-mpv-hook
];
};
ncspot.enable = true;
};
}