about summary refs log tree commit diff
path: root/home/modules/programs
diff options
context:
space:
mode:
Diffstat (limited to 'home/modules/programs')
-rw-r--r--home/modules/programs/spotify-tui/default.nix56
1 files changed, 56 insertions, 0 deletions
diff --git a/home/modules/programs/spotify-tui/default.nix b/home/modules/programs/spotify-tui/default.nix
new file mode 100644
index 0000000..433ba64
--- /dev/null
+++ b/home/modules/programs/spotify-tui/default.nix
@@ -0,0 +1,56 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+
+  cfg = config.programs.spotify-tui;
+  yamlFormat = pkgs.formats.yaml { };
+
+in {
+  meta.maintainers = with lib.maintainers; [ boppyt ];
+
+  options.programs.spotify-tui = {
+    enable = mkEnableOption "A Spotify client for the terminal written in Rust.";
+
+    package = mkOption {
+      type = types.package;
+      default = pkgs.spotify-tui;
+      defaultText = literalExpression "pkgs.spotify-tui";
+      description = "The spotify-tui package to install";
+    };
+
+    settings = mkOption {
+      type = yamlFormat.type;
+      default = { };
+      description = ''
+        Configuration written to
+        <filename>$XDG_CONFIG_HOME/spotify-tui/config.yml</filename>. See <link
+        xlink:href="https://github.com/Rigellute/spotify-tui#configuration"/>
+        for a list of available options.
+      '';
+      example = literalExpression ''
+        {
+          theme = {
+            active = "Cyan";
+            banner = "LightCyan";
+          };
+
+          behavior = {
+            seek_milliseconds = 5000;
+            volume_increment = 10;
+          };
+        }
+      '';
+    };
+  };
+
+  config = mkIf cfg.enable {
+
+    home.packages = [ cfg.package ];
+
+    xdg.configFile."spotify-tui/config.yml" = mkIf (cfg.settings != { }) {
+      source = yamlFormat.generate "config.yml" cfg.settings;
+    };
+  };
+}