From 8cf59cda0b347e03b97203bf862942a372cc2cc3 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Fri, 18 Feb 2022 12:18:09 +0100 Subject: [PATCH] Set flake channel as default for nix-shell and nix build --- machines/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machines/common.nix b/machines/common.nix index ef05b06..87a09f2 100644 --- a/machines/common.nix +++ b/machines/common.nix @@ -14,7 +14,7 @@ inputs: ]; }; # nix shell and nix build should use the same channel as the flake - registry.nixpkgs.flake = nixpkgs; + registry.nixpkgs.flake = inputs.nixpkgs; }; nixpkgs.config.allowUnfree = true;