8 lines
178 B
Nix
8 lines
178 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
home = lib.mkIf config.home.desktop.enable {
|
|
packages = with pkgs; [ spotdl ];
|
|
shellAliases.spotdl = "spotdl --m3u --format opus";
|
|
};
|
|
}
|