mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
26 lines
458 B
Nix
26 lines
458 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
spicepkgs = inputs.spicetify.legacyPackages.${pkgs.system};
|
|
in
|
|
{
|
|
imports = [
|
|
inputs.spicetify.homeManagerModules.default
|
|
];
|
|
|
|
programs.spicetify = {
|
|
enable = true;
|
|
theme = spicepkgs.themes.dribbblish;
|
|
colorScheme = "rosepine";
|
|
enabledExtensions = with spicepkgs.extensions; [
|
|
lastfm
|
|
fullAppDisplayMod
|
|
];
|
|
enabledCustomApps = with spicepkgs.apps; [
|
|
lyricsPlus
|
|
];
|
|
};
|
|
}
|