diff --git a/.gitignore b/.gitignore index 6ae4d14..7ad6275 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ /.direnv -**/.qmlls.ini diff --git a/flake.lock b/flake.lock index fe832a9..51def11 100644 --- a/flake.lock +++ b/flake.lock @@ -374,7 +374,6 @@ "lanzaboote": "lanzaboote", "nixpkgs": "nixpkgs_2", "quickshell": "quickshell", - "spicetify-nix": "spicetify-nix", "systems": "systems", "watt": "watt" } @@ -400,29 +399,6 @@ "type": "github" } }, - "spicetify-nix": { - "inputs": { - "nixpkgs": [ - "nixpkgs" - ], - "systems": [ - "systems" - ] - }, - "locked": { - "lastModified": 1752381641, - "narHash": "sha256-R2iDZb94RosuCeuIukacZVVXxzWYr4jn/QI/ax15nW8=", - "owner": "Gerg-L", - "repo": "spicetify-nix", - "rev": "8f9fd947c52aa6adb6bafe72516eccf186708954", - "type": "github" - }, - "original": { - "owner": "Gerg-L", - "repo": "spicetify-nix", - "type": "github" - } - }, "systems": { "locked": { "lastModified": 1689347949, diff --git a/flake.nix b/flake.nix index 945964b..2edf56f 100644 --- a/flake.nix +++ b/flake.nix @@ -52,11 +52,6 @@ url = "github:notashelf/watt"; inputs.nixpkgs.follows = "nixpkgs"; }; - spicetify-nix = { - url = "github:Gerg-L/spicetify-nix"; - inputs.nixpkgs.follows = "nixpkgs"; - inputs.systems.follows = "systems"; - }; quickshell = { # add ?ref= to track a tag diff --git a/hosts/temperance/programs.nix b/hosts/temperance/programs.nix index 10bca5b..ec30448 100644 --- a/hosts/temperance/programs.nix +++ b/hosts/temperance/programs.nix @@ -58,6 +58,7 @@ rmpc ruby_3_2 signal-desktop + spotify starship telegram-desktop thunderbird diff --git a/modules/programs/gui/spotify.mod.nix b/modules/programs/gui/spotify.mod.nix deleted file mode 100644 index b0143e5..0000000 --- a/modules/programs/gui/spotify.mod.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ - inputs, - pkgs, - ... -}: let - spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system}; - spicetify = inputs.spicetify-nix.lib.mkSpicetify pkgs { - enable = true; - theme = spicePkgs.themes.catppuccin; - colorScheme = "mocha"; - # enabledCustomApps = with spicePkgs.apps; [ - # newReleases - # lyricsPlus - # ncsVisualizer - # ]; - enabledExtensions = with spicePkgs.extensions; [ - shuffle - hidePodcasts - keyboardShortcut - groupSession - keyboardShortcut - betterGenres - autoVolume - lastfm - ]; - }; -in { - environment.systemPackages = - [spicetify] - ++ (with pkgs; [ - sptlrx - ]); -}