Files
nixos-config/home/common/programs/desktop/spicetify.nix
T
Miguel Palhas 195ee328de
CI / lint (push) Successful in 1m15s
CI / eval (push) Successful in 3m7s
spicetify: switch to comfy theme (rose-pine)
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-29 10:57:36 +01:00

19 lines
409 B
Nix

{ inputs, pkgs, ... }:
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
in
{
imports = [ inputs.spicetify-nix.homeManagerModules.default ];
programs.spicetify = {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblock
hidePodcasts
shuffle
];
theme = spicePkgs.themes.comfy;
colorScheme = "rose-pine";
};
}