From df6b48e2f327fb17c4d28b6843fabb81aab3fc16 Mon Sep 17 00:00:00 2001 From: Ryan Lahfa Date: Sat, 7 Dec 2024 16:20:41 +0100 Subject: [PATCH] feat(hive/registry): add Zyxel NWA50AX in the registry Signed-off-by: Ryan Lahfa --- hive.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/hive.nix b/hive.nix index d9378c6..6d20a20 100644 --- a/hive.nix +++ b/hive.nix @@ -93,6 +93,21 @@ in }; registry = { + zyxel-nwa50ax = { + evalConfig = + args: + (import "${sources.liminix}/lib/eval-config.nix" { + nixpkgs = args.specialArgs.sourcePkgs.path; + }) + args; + + defaults = _: { + # It's impure, but who cares? + # Can Flakes even do that? :) + nixpkgs.buildPlatform = builtins.currentSystem; + }; + }; + nixos = { evalConfig = args: import "${args.specialArgs.sourcePkgs.path}/nixos/lib/eval-config.nix" args; defaults =