removing unnecessary modules

This commit is contained in:
vali 2024-08-13 11:00:58 +02:00
commit b780ab6c51
11 changed files with 108 additions and 316 deletions

View file

@ -8,22 +8,23 @@
}: let
cfg = config.modules.system.programs.spotify;
inherit (config.modules.other.system) username;
spicePkgs = inputs'.spicetify-nix.packages.default;
spicePkgs = inputs'.spicetify-nix.legacyPackages;
in {
config = lib.mkIf cfg.enable {
home-manager.users.${username} = {
imports = [inputs.spicetify-nix.homeManagerModule];
imports = [inputs.spicetify-nix.homeManagerModules.default];
programs.spicetify = {
enable = true;
spotifyPackage = pkgs.spotify;
#theme = spicePkgs.themes.Onepunch;
#colorScheme = "mocha";
enabledExtensions = with spicePkgs.extensions; [
#shuffle
adblock
#genre
#playlistIcons
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
# enabledExtensions = with spicePkgs.extensions; [
# shuffle
# popupLyrics
# adblock
# betterGenres
# playlistIcons
# ];
};
};
};