From 835da97333dd5cb2447d77cedbad2f7d086c5f48 Mon Sep 17 00:00:00 2001 From: Denis Lehmann Date: Mon, 22 Nov 2021 17:39:30 +0100 Subject: [PATCH] explicitly pin nixpkgs --- flake.lock | 17 ++++++++++------- flake.nix | 5 ++++- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/flake.lock b/flake.lock index fbc95ee..ee220aa 100644 --- a/flake.lock +++ b/flake.lock @@ -17,15 +17,18 @@ }, "nixpkgs": { "locked": { - "lastModified": 1637316267, - "narHash": "sha256-hfAA/0W3tycKKOSwP7Xt6FXLG9h/FgCu45wdGubHtV0=", - "path": "/nix/store/9v2i11v8nnfczb3hcvhb195p0m2n5w92-source", - "rev": "24528474d2b3370f2f23879a557ae2cc92a5d50b", - "type": "path" + "lastModified": 1637155076, + "narHash": "sha256-26ZPNiuzlsnXpt55Q44+yzXvp385aNAfevzVEKbrU5Q=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "715f63411952c86c8f57ab9e3e3cb866a015b5f2", + "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 a369e15..16ba66b 100644 --- a/flake.nix +++ b/flake.nix @@ -3,7 +3,10 @@ nixConfig.bash-prompt = "\[\\e[1m\\e[34mhuepaper-dev\\e[0m:\\w\]$ "; - inputs.flake-utils.url = "github:numtide/flake-utils"; + inputs = { + nixpkgs.url = github:nixos/nixpkgs/nixos-unstable; + flake-utils.url = github:numtide/flake-utils; + }; outputs = { self, nixpkgs, flake-utils }: