gui/spicetify.nix: init

This commit is contained in:
Charlie Root 2024-10-05 01:12:46 +02:00
commit 9df6cb9c4f
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw
4 changed files with 81 additions and 3 deletions

View file

@ -2,6 +2,7 @@ _: {
imports = [
./vesktop.nix
./foot.nix
./spicetify.nix
./mpv.nix
./zathura.nix
./steam.nix

View file

@ -0,0 +1,22 @@
{
inputs,
inputs',
pkgs,
...
}: let
spicePkgs = inputs'.spicetify-nix.legacyPackages;
in {
imports = [
inputs.spicetify-nix.nixosModules.default
];
programs.spicetify = {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblock
hidePodcasts
shuffle
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
};
}