From 597fbc168e98f8463a94a2112601035cf746417d Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Fri, 23 Aug 2024 19:36:34 +0200 Subject: [PATCH] fix(default): add overlay via nixos module system For some reason, the overlays are discarded when the package set gets re-evaluated. Signed-off-by: Raito Bezarius --- default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 9c87e19..e372095 100644 --- a/default.nix +++ b/default.nix @@ -9,7 +9,7 @@ let overlay = import ./overlay.nix; pkgs = import nixpkgs (device.system // { - overlays = [overlay]; + overlays = [ overlay ]; config = { allowUnsupportedSystem = true; # mipsel permittedInsecurePackages = [ @@ -25,6 +25,11 @@ let eval = evalModules { modules = [ + { + nixpkgs.overlays = [ + overlay + ]; + } device.module liminix-config ];