2: Moved Spicetify from system/modules to home/modules/media and changed Spicetify theme from Catppuccin Mocha to Text-CatppuccinMocha

This commit is contained in:
uzy lol 2025-01-26 11:26:30 -08:00
parent d62a9a8f07
commit b8253664b0
4 changed files with 25 additions and 39 deletions

View File

@ -86,19 +86,16 @@
./hosts/precision-5530/home/home.nix
nixvim.homeManagerModules.nixvim
walker.homeManagerModules.default
spicetify-nix.homeManagerModules.default
];
};
}
#inputs.minegrub-world-sel-theme.nixosModules.default
nixos-hardware.nixosModules.dell-precision-5530
nixos-cli.nixosModules.nixos-cli
lanzaboote.nixosModules.lanzaboote
./hosts/precision-5530/system
#inputs.minegrub-world-sel-theme.nixosModules.default
nixos-hardware.nixosModules.dell-precision-5530
nixos-cli.nixosModules.nixos-cli
lanzaboote.nixosModules.lanzaboote
];
};
};

View File

@ -1,4 +1,8 @@
{pkgs, ...}: {
{
pkgs,
inputs,
...
}: {
home.packages = with pkgs; [
nicotine-plus
gimp
@ -16,4 +20,19 @@
obs-studio-plugins.obs-vaapi
];
};
programs.spicetify = let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
in {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblock
beautifulLyrics
];
theme = spicePkgs.themes.text;
colorScheme = "CatppuccinMocha";
enabledCustomApps = with spicePkgs.apps; [
lyricsPlus
];
};
}

View File

@ -9,7 +9,6 @@
./kdePlasma.nix
./media.nix
./suspendThenHibernate.nix
./spicetify.nix
./hardware-configuration.nix
./tzLocale.nix
./users.nix

View File

@ -1,29 +0,0 @@
{
pkgs,
lib,
inputs,
...
}: let
unstable = import <nixos-unstable> {config = {allowUnfree = true;};};
spicetify-nix = inputs.spicetify-nix;
spicePkgs = spicetify-nix.packages.${pkgs.system}.default;
in {
imports = [
inputs.spicetify-nix.nixosModules.default
];
programs.spicetify = let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
in {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblock
beautifulLyrics
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
enabledCustomApps = with spicePkgs.apps; [
lyricsPlus
];
};
}