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

@ -11185,6 +11185,7 @@ This holds packages that I can use as provided, or with small modifications (as
# nextcloud-client # enables a systemd service that I do not want
# spotify-player
# element-desktop
nicotine-plus
stable.transmission_3
mktorrent
@ -14733,6 +14734,24 @@ This service changes the screen hue at night. I am not sure if that really does
}
#+end_src
**** spotify-player
#+begin_src nix-ts :tangle modules/home/common/spotify-player.nix
{ 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;
};
};
}
#+end_src
**** vesktop
#+begin_src nix-ts :tangle modules/home/common/vesktop.nix