remove spicetify

This commit is contained in:
Sean Kovacs 2026-03-02 18:04:28 -05:00
commit 6660074d33
Signed by: sckova
GPG key ID: 00F325187C68651A
3 changed files with 3 additions and 73 deletions

38
flake.lock generated
View file

@ -845,6 +845,7 @@
},
"original": {
"owner": "OpenMW",
"ref": "01bcd6",
"repo": "openmw",
"type": "gitlab"
}
@ -915,31 +916,9 @@
"nur": "nur",
"openmw": "openmw",
"plasma-manager": "plasma-manager",
"spicetify-nix": "spicetify-nix",
"tt-schemes": "tt-schemes"
}
},
"spicetify-nix": {
"inputs": {
"nixpkgs": [
"nixpkgs"
],
"systems": "systems_3"
},
"locked": {
"lastModified": 1769316930,
"narHash": "sha256-4EOGHYLpIscwr+6drHE28Qj7NDjjowp2Vd8QkXjdBBE=",
"owner": "Gerg-L",
"repo": "spicetify-nix",
"rev": "b2ce438f386943ef611e196a178af2d79042903b",
"type": "github"
},
"original": {
"owner": "Gerg-L",
"repo": "spicetify-nix",
"type": "github"
}
},
"systems": {
"locked": {
"lastModified": 1689347949,
@ -970,21 +949,6 @@
"type": "github"
}
},
"systems_3": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
},
"tt-schemes": {
"flake": false,
"locked": {

View file

@ -55,11 +55,6 @@
inputs.nixpkgs.follows = "nixpkgs";
};
spicetify-nix = {
url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
nur = {
url = "github:nix-community/NUR";
inputs.nixpkgs.follows = "nixpkgs";
@ -71,7 +66,7 @@
};
openmw = {
url = "gitlab:OpenMW/openmw";
url = "gitlab:OpenMW/openmw/01bcd6";
flake = false;
};
};
@ -90,7 +85,6 @@
niri,
hyprland,
noctalia,
spicetify-nix,
nur,
nixvim,
openmw,
@ -234,11 +228,9 @@
)
plasma-manager.homeModules.plasma-manager
noctalia.homeModules.default
spicetify-nix.homeManagerModules.default
nixvim.homeModules.nixvim
];
extraSpecialArgs = {
inherit spicetify-nix;
pkgs-unstable = import nixpkgs-unstable {
inherit system;
config = pkgConfig;

View file

@ -3,7 +3,6 @@
pkgs,
lib,
pkgs-unstable,
spicetify-nix,
...
}:
{
@ -15,7 +14,7 @@
home.packages = with pkgs; [
pkgs-unstable.ckan
# steam gtk theming
spotify
adwsteamgtk
daggerfall-unity
vintagestory
@ -27,29 +26,4 @@
position = "top";
density = "default";
};
programs.spicetify =
let
spicePkgs = spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
in
{
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblock
hidePodcasts
shuffle # shuffle+ (special characters are sanitized out of extension names)
];
enabledCustomApps = with spicePkgs.apps; [
newReleases
ncsVisualizer
];
enabledSnippets = with spicePkgs.snippets; [
rotatingCoverart
pointer
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
};
}