8 lines
129 B
Nix
8 lines
129 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home = {
|
|
packages = with pkgs; [ spotdl ];
|
|
shellAliases.spotdl = "spotdl --m3u --format opus";
|
|
};
|
|
}
|