Added spicetify

This commit is contained in:
2026-04-09 12:33:01 +01:00
parent 077f266b51
commit 7cd07d90f2
4 changed files with 78 additions and 2 deletions
Generated
+49 -1
View File
@@ -248,6 +248,19 @@
"type": "github"
}
},
"nixpkgs_7": {
"locked": {
"lastModified": 1775036866,
"narHash": "sha256-ByAX1LkhCwZ94+KnFAmnJSMAvui7kgCxjHgUHsWAbfI=",
"rev": "6201e203d09599479a3b3450ed24fa81537ebc4e",
"type": "tarball",
"url": "https://releases.nixos.org/nixos/unstable/nixos-26.05pre972949.6201e203d095/nixexprs.tar.xz"
},
"original": {
"type": "tarball",
"url": "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"
}
},
"noctalia": {
"inputs": {
"nixpkgs": [
@@ -299,7 +312,8 @@
"nixpkgs": "nixpkgs_5",
"nixpkgs-unstable": "nixpkgs-unstable_2",
"noctalia": "noctalia",
"sops-nix": "sops-nix"
"sops-nix": "sops-nix",
"spicetify-nix": "spicetify-nix"
}
},
"sops-nix": {
@@ -320,6 +334,25 @@
"type": "github"
}
},
"spicetify-nix": {
"inputs": {
"nixpkgs": "nixpkgs_7",
"systems": "systems_4"
},
"locked": {
"lastModified": 1775421933,
"narHash": "sha256-JkEbzFDFTsUlVtHEzA8Y4r3O9LInhb96eOCbtGjGnbM=",
"owner": "Gerg-L",
"repo": "spicetify-nix",
"rev": "ec8d73085fdf807d55765335dc8126e14e7b2096",
"type": "github"
},
"original": {
"owner": "Gerg-L",
"repo": "spicetify-nix",
"type": "github"
}
},
"systems": {
"locked": {
"lastModified": 1689347949,
@@ -365,6 +398,21 @@
"type": "github"
}
},
"systems_4": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
},
"treefmt-nix": {
"inputs": {
"nixpkgs": [
+2
View File
@@ -24,6 +24,8 @@
url = "github:noctalia-dev/noctalia-shell";
inputs.nixpkgs.follows = "nixpkgs";
};
# Add spicetify input
spicetify-nix.url = "github:Gerg-L/spicetify-nix";
};
outputs = {
-1
View File
@@ -52,7 +52,6 @@ in {
nixers.rbw-autofill
unstablePkgs.ruff
pkgs.signal-desktop
unstablePkgs.spotify
pkgs.sshs
unstablePkgs.uv
pkgs.vial
+27
View File
@@ -10,6 +10,7 @@
}: {
imports = [
inputs.noctalia.homeModules.default
inputs.spicetify-nix.homeManagerModules.default
];
programs = {
@@ -34,5 +35,31 @@
};
};
hyprcursor-phinger.enable = true;
spicetify = let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
in {
enable = true;
theme = {
name = "TokyoNight";
src = pkgs.fetchFromGitHub {
owner = "evening-hs";
repo = "Spotify-Tokyo-Night-Theme";
rev = "main";
hash = "sha256-cLj9v8qtHsdV9FfzV2Qf4pWO8AOBXu51U/lUMvdEXAk=";
};
appendName = false;
injectCss = true;
replaceColors = true;
overwriteAssets = true;
};
colorScheme = "Night";
enabledExtensions = with spicePkgs.extensions; [
adblock
shuffle
hidePodcasts
fullAppDisplay
trashbin
];
};
};
}