fix(spotify): also swap back to unstable

This commit is contained in:
zack 2024-07-27 00:21:12 -04:00
parent 4177fd51e3
commit 4e37634c75
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35
3 changed files with 32 additions and 49 deletions

73
flake.lock generated
View file

@ -245,6 +245,22 @@
"type": "github"
}
},
"flake-compat_6": {
"flake": false,
"locked": {
"lastModified": 1696426674,
"narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
"owner": "edolstra",
"repo": "flake-compat",
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
"type": "github"
},
"original": {
"owner": "edolstra",
"repo": "flake-compat",
"type": "github"
}
},
"flake-parts": {
"inputs": {
"nixpkgs-lib": [
@ -438,24 +454,6 @@
"type": "github"
}
},
"flake-utils_5": {
"inputs": {
"systems": "systems_13"
},
"locked": {
"lastModified": 1685518550,
"narHash": "sha256-o2d0KcvaXzTrPRIo0kOLV0/QXHhDQ5DTi+OxcjO8xqY=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "a1720a10a6cfe8234c0e93907ffe81be440f4cef",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"git-hooks": {
"inputs": {
"flake-compat": "flake-compat_3",
@ -1083,16 +1081,16 @@
},
"nixpkgs_7": {
"locked": {
"lastModified": 1722019215,
"narHash": "sha256-69inO5HaszNGps14VWQerwf2gxLwPC3KaDRgfmO7E2c=",
"lastModified": 1721924956,
"narHash": "sha256-Sb1jlyRO+N8jBXEX9Pg9Z1Qb8Bw9QyOgLDNMEpmjZ2M=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "816155d48f918b88cc96ae990d8e1ccafb76fc15",
"rev": "5ad6a14c6bf098e98800b091668718c336effc95",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable-small",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
@ -1240,7 +1238,7 @@
"rio-term": "rio-term",
"snowfall-lib": "snowfall-lib",
"spicetify-nix": "spicetify-nix",
"systems": "systems_14",
"systems": "systems_13",
"waybar": "waybar"
}
},
@ -1330,21 +1328,21 @@
},
"spicetify-nix": {
"inputs": {
"flake-utils": "flake-utils_5",
"flake-compat": "flake-compat_5",
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1704167711,
"narHash": "sha256-kFDq+kf/Di/P8bq5sUP8pVwRkrSVrABksBjMPmLic3s=",
"owner": "the-argus",
"lastModified": 1721967147,
"narHash": "sha256-VAnqJ5ABUBsnDEv0bkt/QFekBK5LkGb0YTyhhS1jOtE=",
"owner": "Gerg-L",
"repo": "spicetify-nix",
"rev": "1325416f951d6a82cfddb1289864ad782e2b87c4",
"rev": "d3fee2fd48f0d8ece7d539e9fb0886c3ee2bc20b",
"type": "github"
},
"original": {
"owner": "the-argus",
"owner": "Gerg-L",
"repo": "spicetify-nix",
"type": "github"
}
@ -1425,21 +1423,6 @@
"type": "github"
}
},
"systems_14": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
},
"systems_2": {
"locked": {
"lastModified": 1689347949,
@ -1562,7 +1545,7 @@
},
"waybar": {
"inputs": {
"flake-compat": "flake-compat_5",
"flake-compat": "flake-compat_6",
"nixpkgs": [
"nixpkgs"
]

View file

@ -11,7 +11,7 @@
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable-small";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
@ -88,7 +88,7 @@
systems.url = "github:nix-systems/default";
spicetify-nix = {
url = "github:the-argus/spicetify-nix";
url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
@ -111,7 +111,7 @@
templates = import ./templates {};
homes.modules = with inputs; [
spicetify-nix.homeManagerModule
spicetify-nix.homeManagerModules.default
catppuccin.homeManagerModules.catppuccin
anyrun.homeManagerModules.default
ags.homeManagerModules.default

View file

@ -10,7 +10,7 @@
with lib;
with lib.custom; let
cfg = config.apps.music.spotify;
spicePkgs = inputs.spicetify-nix.packages.${system}.default;
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
in {
options.apps.music.spotify = with types; {
enable = mkBoolOpt false "Enable Spotify";