nixos/home/media.nix
Evie Litherland-Smith 685063b6ed Switch spotify client to Spot
GTK/Rust implementation of a spotify client
2023-10-21 08:24:03 +01:00

22 lines
370 B
Nix

{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [ mpc-cli spot ];
services.mpd = {
enable = true;
network.startWhenNeeded = true;
};
programs.mpv = {
enable = true;
scripts = with pkgs.mpvScripts; [
mpris
autoload
thumbfast
thumbnail
sponsorblock
quality-menu
webtorrent-mpv-hook
];
};
}