17 lines
243 B
Nix
17 lines
243 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
inherit (config.modules.system) isGraphical;
|
|
in {
|
|
# TODO: setup
|
|
services.spotifyd = mkIf isGraphical {
|
|
enable = true;
|
|
settings = {
|
|
};
|
|
config = {
|
|
};
|
|
};
|
|
}
|