From a4a49d363b055efb3942462ef42bf28f7a70a1e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Wed, 17 Jan 2024 00:51:21 +0100 Subject: [PATCH] fix(overlays): Just use default --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 20e7b77..4b9b580 100644 --- a/flake.nix +++ b/flake.nix @@ -68,7 +68,7 @@ # Nix files formatter (run `nix fmt`) formatter = forEachSupportedSystem ({ pkgs, ... }: pkgs.nixpkgs-fmt); - overlays = forEachSupportedSystem ({ system, ... }: home-config.overlays.${system}); + overlays = { inherit (home-config.overlays) default; }; # Example vm configuration nixosConfigurations.vm =