From 6660074d33a4101971d26ab9663b6e6ade72b3fc Mon Sep 17 00:00:00 2001 From: Sean Kovacs Date: Mon, 2 Mar 2026 18:04:28 -0500 Subject: [PATCH] remove spicetify --- flake.lock | 38 +----------------------------------- flake.nix | 10 +--------- home/hosts/alien/default.nix | 28 +------------------------- 3 files changed, 3 insertions(+), 73 deletions(-) diff --git a/flake.lock b/flake.lock index e136f27..8c006c7 100644 --- a/flake.lock +++ b/flake.lock @@ -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": { diff --git a/flake.nix b/flake.nix index 02141ab..f3ec258 100644 --- a/flake.nix +++ b/flake.nix @@ -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; diff --git a/home/hosts/alien/default.nix b/home/hosts/alien/default.nix index 513501e..7aaf703 100644 --- a/home/hosts/alien/default.nix +++ b/home/hosts/alien/default.nix @@ -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"; - }; }