From b4af22f7786e8bd94142ab0bd4c483bb27ec61ee Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Wed, 4 Oct 2023 10:46:41 +0200 Subject: [PATCH] flake: fix eval of nixos configs --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 088cb169..ed59c4bd 100644 --- a/flake.nix +++ b/flake.nix @@ -131,7 +131,7 @@ modules = commonModules ++ [ ({ config, ... }: { - nixpkgs.pkgs = import nixpkgs { inherit overlays system; config = config.nixpkgs.config; }; + nixpkgs.overlays = overlays; networking.hostName = name; nix = { extraOptions = "extra-experimental-features = nix-command flakes";