nichts/modules/programs/gui/spotify.mod.nix

10 lines
109 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
environment.systemPackages = [
pkgs.spotify
]
++ (with pkgs; [
sptlrx
]);
2025-07-19 00:45:47 +02:00
}