remove spicetify

This commit is contained in:
Sean Kovacs 2026-03-02 18:04:28 -05:00
commit 684a6eea14
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": { "original": {
"owner": "OpenMW", "owner": "OpenMW",
"ref": "01bcd6",
"repo": "openmw", "repo": "openmw",
"type": "gitlab" "type": "gitlab"
} }
@ -915,31 +916,9 @@
"nur": "nur", "nur": "nur",
"openmw": "openmw", "openmw": "openmw",
"plasma-manager": "plasma-manager", "plasma-manager": "plasma-manager",
"spicetify-nix": "spicetify-nix",
"tt-schemes": "tt-schemes" "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": { "systems": {
"locked": { "locked": {
"lastModified": 1689347949, "lastModified": 1689347949,
@ -970,21 +949,6 @@
"type": "github" "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": { "tt-schemes": {
"flake": false, "flake": false,
"locked": { "locked": {

View file

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

View file

@ -3,7 +3,6 @@
pkgs, pkgs,
lib, lib,
pkgs-unstable, pkgs-unstable,
spicetify-nix,
... ...
}: }:
{ {
@ -15,7 +14,7 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
pkgs-unstable.ckan pkgs-unstable.ckan
# steam gtk theming spotify
adwsteamgtk adwsteamgtk
daggerfall-unity daggerfall-unity
vintagestory vintagestory
@ -27,29 +26,4 @@
position = "top"; position = "top";
density = "default"; 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";
};
} }