From bf59976063db3bdabea6d6e988658c986f7cee13 Mon Sep 17 00:00:00 2001 From: David Arnold Date: Wed, 7 Jul 2021 17:11:59 -0500 Subject: [PATCH] work-around for https://github.com/NixOS/nix/pull/4641 --- flake.lock | 3 +++ flake.nix | 3 +++ 2 files changed, 6 insertions(+) diff --git a/flake.lock b/flake.lock index 8344bfbe..4e996f76 100644 --- a/flake.lock +++ b/flake.lock @@ -459,6 +459,9 @@ "latest": "latest", "nixos": "nixos", "nixos-hardware": "nixos-hardware", + "nixpkgs": [ + "nixos" + ], "nur": "nur", "nvfetcher": "nvfetcher" } diff --git a/flake.nix b/flake.nix index d409047c..4de566b6 100644 --- a/flake.nix +++ b/flake.nix @@ -14,6 +14,9 @@ deploy.url = "github:serokell/deploy-rs"; deploy.inputs.nixpkgs.follows = "nixos"; + # remove after https://github.com/NixOS/nix/pull/4641 + nixpkgs.follows = "nixos"; + ci-agent = { url = "github:hercules-ci/hercules-ci-agent"; inputs = { nix-darwin.follows = "darwin"; nixos-20_09.follows = "nixos"; nixos-unstable.follows = "latest"; };