]> git.scottworley.com Git - nixos-qemu-vm-isolation/commitdiff
New nixpkgs pin
authorScott Worley <scottworley@scottworley.com>
Mon, 20 Dec 2021 06:41:14 +0000 (22:41 -0800)
committerScott Worley <scottworley@scottworley.com>
Mon, 20 Dec 2021 06:41:14 +0000 (22:41 -0800)
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.

flake.lock
flake.nix

index 01cb232dccddfb437cae8574ba44f6ac4403aaa5..0faa452ad0e271fe97996070bdcab8f668d6db07 100644 (file)
@@ -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": {
index 355702e731c81ba8b89fc7f5178c22b68522c744..757331ddf4927e363eb0b224bdf1e24124b8f3d4 100644 (file)
--- 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;