Home

dotnix @8355a996418d9abde0b83ac48ed5f6fe7cc8b67a - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / gui / spotify.nix
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
{pkgs, ...}: {
  xdg.configFile."spotify-player/theme.toml".text = builtins.readFile (pkgs.fetchFromGitHub {
      owner = "catppuccin";
      repo = "spotify-player";
      rev = "816e48fe7ade959dab920d83a7a88a952c48ede3";
      sha256 = "sha256-Xl8GoAzuSfYmFb5ohS4H5we9q+0DTrCwQ3WubPsnxGg=";
    }
    + "/src/theme.toml");
  xdg.configFile."spotify-player/app.toml".source = (pkgs.formats.toml {}).generate "spotify-player-config" {
    client_id = "41af4976ba70474fbd541ee8764a2cda";
    theme = "Catppuccin-mocha";
    enable_notify = false;
    enable_media_control = true;
    device.volume = 100;
  };
  programs.nushell.shellAliases.spt = "spotify_player";
}