removing quickshell and spicetify

This commit is contained in:
Charlie Root 2024-08-20 21:47:59 +02:00
commit 8c28805def
16 changed files with 42 additions and 383 deletions

View file

@ -4,7 +4,6 @@ _: {
./foot.nix
./mpv.nix
./zathura.nix
./spicetify.nix
./steam.nix
./waybar.nix
./schizofox.nix

View file

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