mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 21:22:10 -08:00
32 lines
618 B
Nix
32 lines
618 B
Nix
|
{
|
||
|
inputs,
|
||
|
pkgs,
|
||
|
config,
|
||
|
osConfig,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
let
|
||
|
spicepkgs = inputs.spicetify.legacyPackages.${pkgs.system};
|
||
|
in
|
||
|
{
|
||
|
imports = [
|
||
|
inputs.spicetify.homeManagerModules.default
|
||
|
];
|
||
|
|
||
|
config = lib.mkIf (config.liminalOS.programs.enable && osConfig.liminalOS.config.allowUnfree) {
|
||
|
programs.spicetify = {
|
||
|
enable = true;
|
||
|
# theme = spicepkgs.themes.dribbblish;
|
||
|
# colorScheme = "rosepine";
|
||
|
enabledExtensions = with spicepkgs.extensions; [
|
||
|
lastfm
|
||
|
fullAppDisplayMod
|
||
|
];
|
||
|
enabledCustomApps = with spicepkgs.apps; [
|
||
|
lyricsPlus
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|