From: Scott Worley Date: Mon, 20 Dec 2021 06:41:14 +0000 (-0800) Subject: New nixpkgs pin X-Git-Url: http://git.scottworley.com/nixos-qemu-vm-isolation/commitdiff_plain/7bd3b5bc2c943c637bee35b34a8555cb96279f49 New nixpkgs pin Stick to the nixos-unstable branch so folks that use the public build cache get cache hits. In particular, make sure to pick up e8cc900eaec34c2b7399678f0cd47c1b0e36a6ef, which makes useNixStoreImage actually work. --- diff --git a/flake.lock b/flake.lock index 01cb232..0faa452 100644 --- a/flake.lock +++ b/flake.lock @@ -2,16 +2,18 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1635141467, - "narHash": "sha256-H+TVE6tBSm4nAepm7HRfW7AcrndI5e4+TJwCQo4/z+s=", + "lastModified": 1639876010, + "narHash": "sha256-naGsoUfsY92NaIGiFI8XFXBnesw8BQGe694xcfaLMDI=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "38d21595b8fb0a744aa31c5794013bf42cf98fa9", + "rev": "395879c28386e1abf20c7ecacd45880759548391", "type": "github" }, "original": { - "id": "nixpkgs", - "type": "indirect" + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" } }, "root": { diff --git a/flake.nix b/flake.nix index 355702e..757331d 100644 --- a/flake.nix +++ b/flake.nix @@ -1,4 +1,5 @@ { + inputs.nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable"; outputs = { self, nixpkgs, }: let inherit (nixpkgs.lib) genAttrs;