2026-07-12 02:43:14 +02:00

46 lines
918 B
Nix

{ self, inputs, ... }:
{
flake.nixosModules.spicetify = {pkgs, lib, ...}:
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
in
{
programs.spicetify = {
enable = true;
enabledExtensions = [
"fullAppDisplay"
"loopyLoop"
"shuffle"
"playlistIcons"
"fullAlbumDate"
"skipStats"
"history"
"betterGenres"
"playNext"
"coverAmbience"
"allOfArtist"
"catJamSynced"
"bestMoment"
"madeForYouShortcut"
"sessionStats"
"focusMode"
];
enabledCustomApps = with spicePkgs.apps; [
newReleases
reddit
ncsVisualizer
];
enabledSnippets = with spicePkgs.snippets; [
rotatingCoverart
pointer
];
theme = spicePkgs.themes.flow;
colorScheme = lib.mkDefault "mocha";
};
};
}