Evie Litherland-Smith
461d2580dc
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
20 lines
305 B
Nix
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;
|
|
};
|
|
}
|