mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
29 lines
718 B
Nix
29 lines
718 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 # shuffle+ (special characters are sanitized out of extension names)
|
||
|
|
];
|
||
|
|
enabledCustomApps = with spicePkgs.apps; [
|
||
|
|
newReleases
|
||
|
|
ncsVisualizer
|
||
|
|
];
|
||
|
|
enabledSnippets = with spicePkgs.snippets; [
|
||
|
|
rotatingCoverart
|
||
|
|
pointer
|
||
|
|
];
|
||
|
|
|
||
|
|
# theme = spicePkgs.themes.catppuccin;
|
||
|
|
# colorScheme = "mocha";
|
||
|
|
theme = spicePkgs.themes.defaultDynamic;
|
||
|
|
};
|
||
|
|
}
|