14 lines
327 B
Nix
14 lines
327 B
Nix
{ config, lib, pkgs, pkgsUnstable, ... }:
|
|
{
|
|
config = lib.mkIf config.home.desktop.enable {
|
|
home.packages = (with pkgs; [
|
|
ffmpeg
|
|
ffmpegthumbnailer
|
|
playerctl
|
|
puddletag
|
|
pulsemixer
|
|
]) ++ (with pkgsUnstable; [ spotdl ]);
|
|
|
|
home.shellAliases.spotopus = "spotdl --m3u --format opus";
|
|
};
|
|
}
|