my nixos flake :3 (git.koi.rip mirror) git.koi.rip/koi/flake
nixos catppuccin linux dotfiles neovim
0

Configure Feed

Select the types of activity you want to include in your feed.

spicetify: init

june (Jul 14, 2026, 7:13 PM +0200) b0f4bd16 35a5c119

+51
+24
flake.lock
··· 256 256 "meowtd": "meowtd", 257 257 "niri": "niri", 258 258 "nixpkgs": "nixpkgs", 259 + "spicetify": "spicetify", 259 260 "systems": "systems", 260 261 "washing-machien": "washing-machien", 261 262 "zen-browser": "zen-browser" 263 + } 264 + }, 265 + "spicetify": { 266 + "inputs": { 267 + "nixpkgs": [ 268 + "nixpkgs" 269 + ], 270 + "systems": [ 271 + "systems" 272 + ] 273 + }, 274 + "locked": { 275 + "lastModified": 1783838433, 276 + "narHash": "sha256-Zb8+v76qSPYDlUea1y30YzgdEoDjA97vRmeqfPAqwZs=", 277 + "owner": "Gerg-L", 278 + "repo": "spicetify-nix", 279 + "rev": "c6ab7371e40abd405313af9bddafd5f37cc94f83", 280 + "type": "github" 281 + }, 282 + "original": { 283 + "owner": "Gerg-L", 284 + "repo": "spicetify-nix", 285 + "type": "github" 262 286 } 263 287 }, 264 288 "systems": {
+8
flake.nix
··· 38 38 }; 39 39 }; 40 40 41 + spicetify = { 42 + url = "github:Gerg-L/spicetify-nix"; 43 + inputs = { 44 + nixpkgs.follows = "nixpkgs"; 45 + systems.follows = "systems"; 46 + }; 47 + }; 48 + 41 49 zen-browser = { 42 50 url = "github:0xc000022070/zen-browser-flake/beta"; 43 51 inputs = {
+1
home/programs/graphical/default.nix
··· 8 8 9 9 # web 10 10 ./vesktop.nix 11 + ./spicetify.nix 11 12 ./zen-browser.nix 12 13 13 14 # communication
+18
home/programs/graphical/spicetify.nix
··· 1 + { inputs, pkgs, ... }: 2 + let 3 + spicePkgs = inputs.spicetify.legacyPackages.${pkgs.stdenv.hostPlatform.system}; 4 + in 5 + { 6 + imports = [ inputs.spicetify.homeManagerModules.spicetify ]; 7 + evergarden.spicetify.enable = true; 8 + programs.spicetify = { 9 + enable = true; 10 + wayland = true; 11 + enabledExtensions = with spicePkgs.extensions; [ 12 + catJamSynced 13 + fullAlbumDate 14 + songStats 15 + adblock 16 + ]; 17 + }; 18 + }