feat[client]: add spotify-player

This commit is contained in:
Leon Schwarzäugl 2025-10-11 23:23:33 +02:00
parent 04f6b7eeb9
commit 116a099732
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
3 changed files with 33 additions and 1 deletions

View file

@ -81,8 +81,8 @@
# spotify
# vesktop # discord client
# nextcloud-client # enables a systemd service that I do not want
# spotify-player
# element-desktop
# spotify-player
nicotine-plus
stable.transmission_3

View file

@ -0,0 +1,13 @@
{ lib, config, ... }:
let
moduleName = "spotify-player";
in
{
options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} and settings";
config = lib.mkIf config.swarselmodules.${moduleName} {
programs.${moduleName} = {
enable = true;
};
};
}