diff --git a/config/hosts/public-web-static/spaceapid.nix b/config/hosts/public-web-static/spaceapid.nix index cb752c7..a2eaa4a 100644 --- a/config/hosts/public-web-static/spaceapid.nix +++ b/config/hosts/public-web-static/spaceapid.nix @@ -1,4 +1,4 @@ -{ pkgs-unstable, ... }: +{ pkgs, ... }: let spaceapidSrc = builtins.fetchGit { @@ -6,7 +6,7 @@ let ref = "main"; rev = "baf73f33e7e8ef763869a1677ebf5cd2f334d897"; }; - spaceapid = pkgs-unstable.buildGoModule { + spaceapid = pkgs.buildGoModule { pname = "spaceapid"; version = "main"; diff --git a/flake.nix b/flake.nix index 5f75b90..6e7ea64 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,6 @@ outputs = { nixpkgs, nixpkgs-unstable, nixos-generators, ... }: let - pkgs-unstable = nixpkgs-unstable.legacyPackages."x86_64-linux"; # Shairport Sync 4.3.1 (with nqptp 1.2.4) with metadata, MQTT and AirPlay 2 support. shairportSync431ExtendedNixpkgsUnstableOverlay = final: prev: { shairport-sync = (prev.shairport-sync.override { enableMetadata = true; enableAirplay2 = true; }).overrideAttrs (finalAttr: previousAttr: { @@ -66,9 +65,6 @@ audio-hauptraum-kueche = nixpkgs-unstable.legacyPackages."x86_64-linux".extend shairportSync431ExtendedNixpkgsUnstableOverlay; audio-hauptraum-tafel = nixpkgs-unstable.legacyPackages."x86_64-linux".extend shairportSync431ExtendedNixpkgsUnstableOverlay; }; - nodeSpecialArgs = { - public-web-static = { inherit pkgs-unstable; }; - }; }; audio-hauptraum-kueche = {