gui/spicetify.nix: init
This commit is contained in:
parent
b8fc91ab9d
commit
9df6cb9c4f
4 changed files with 81 additions and 3 deletions
|
@ -2,6 +2,7 @@ _: {
|
|||
imports = [
|
||||
./vesktop.nix
|
||||
./foot.nix
|
||||
./spicetify.nix
|
||||
./mpv.nix
|
||||
./zathura.nix
|
||||
./steam.nix
|
||||
|
|
22
modules/programs/gui/spicetify.nix
Normal file
22
modules/programs/gui/spicetify.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue