diff --git a/flake.lock b/flake.lock index cdcb72981..d99077202 100644 --- a/flake.lock +++ b/flake.lock @@ -115,16 +115,16 @@ }, "nixpkgs-stable": { "locked": { - "lastModified": 1702042171, - "narHash": "sha256-abT0/nqbQfvx052z0JLkCDXulyM+YGznbN8tv6DYNpo=", + "lastModified": 1702049175, + "narHash": "sha256-c/q2+tGHbmLgzT3sXyUKVJR98h1CTks2+nkVaoZPRM0=", "owner": "nixos", "repo": "nixpkgs", - "rev": "357f2203132b749d87d379dfe05245204b2dfe93", + "rev": "b15508bd65870620f1df5864e8e861dffbc4e428", "type": "github" }, "original": { "owner": "nixos", - "ref": "release-23.11", + "ref": "release-23.05", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index 9fc4d0d7d..af1891f43 100644 --- a/flake.nix +++ b/flake.nix @@ -1,18 +1,13 @@ { description = "👻"; - nixConfig = { - extra-trusted-substituters = "https://cache.garnix.io/"; - extra-trusted-public-keys = "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="; - }; - inputs = { nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable"; # We want to stay as up to date as possible but need to be careful that the # glibc versions used by our dependencies from Nix are compatible with the # system glibc that the user is building for. - nixpkgs-stable.url = "github:nixos/nixpkgs/release-23.11"; + nixpkgs-stable.url = "github:nixos/nixpkgs/release-23.05"; # This is a nixpkgs mirror (based off of nixos-unstable) that contains # patches for LLVM 17 and Zig 0.12 (master/nightly). @@ -47,7 +42,7 @@ pkgs-unstable = nixpkgs-unstable.legacyPackages.${system}; pkgs-zig-0-12 = nixpkgs-zig-0-12.legacyPackages.${system}; in { - devShell = pkgs-stable.callPackage ./nix/devShell.nix { + devShell.${system} = pkgs-stable.callPackage ./nix/devShell.nix { inherit (pkgs-unstable) tracy; inherit (zls.packages.${system}) zls;