mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 21:00:32 +01:00
21 lines
483 B
Nix
21 lines
483 B
Nix
|
{ pkgs, lib, inputs, ... }:
|
||
|
let
|
||
|
spicePkgs = inputs.spicetify-nix.packages.${pkgs.system}.default;
|
||
|
in
|
||
|
{
|
||
|
imports = [ inputs.spicetify-nix.homeManagerModule ];
|
||
|
|
||
|
programs.spicetify =
|
||
|
{
|
||
|
enable = true;
|
||
|
theme = spicePkgs.themes.catppuccin;
|
||
|
colorScheme = "mocha";
|
||
|
|
||
|
enabledExtensions = with spicePkgs.extensions; [
|
||
|
fullAppDisplay
|
||
|
shuffle # shuffle+ (special characters are sanitized out of ext names)
|
||
|
# hidePodcasts
|
||
|
];
|
||
|
};
|
||
|
}
|