spotify stuff

This commit is contained in:
blahai 2024-08-31 01:10:17 +03:00
parent 986387dee5
commit f20c16ac95
No known key found for this signature in database
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ pkgs, lib, config, ... }: {
imports = [
inputs.spicetify-nix.homeManagerModules.default
];
programs.spicetify =
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
in
{
enable = true;
enabledExtensions = with spicePkgs.extensions; [
hidePodcasts
];
theme = spicePkgs.themes.comfy;
colorScheme = "Hikari";
}
}