From 1903314a6b426a8a3eb26a9018313967d231b9cb Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Fri, 25 Jun 2021 00:03:02 -0400 Subject: [PATCH] add unstable overlay --- lib/hosts.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/hosts.nix b/lib/hosts.nix index bbaff4c..0ea9ad2 100644 --- a/lib/hosts.nix +++ b/lib/hosts.nix @@ -24,6 +24,11 @@ let (hostMeta.module) (hardwareModules.${hostMeta.hardware}) (_: { networking.hostName = hostName; }) + (_: { + nixpkgs.overlays = [ + (_: _: { unstable = callerInputs.unstable.legacyPackages.${hostMeta.system}; }) + ]; + }) ]; };