feat(hive/registry): add Zyxel NWA50AX in the registry
Signed-off-by: Ryan Lahfa <ryan@dgnum.eu>
This commit is contained in:
parent
d9a6d38d5e
commit
df6b48e2f3
1 changed files with 15 additions and 0 deletions
15
hive.nix
15
hive.nix
|
@ -93,6 +93,21 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
registry = {
|
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 = {
|
nixos = {
|
||||||
evalConfig = args: import "${args.specialArgs.sourcePkgs.path}/nixos/lib/eval-config.nix" args;
|
evalConfig = args: import "${args.specialArgs.sourcePkgs.path}/nixos/lib/eval-config.nix" args;
|
||||||
defaults =
|
defaults =
|
||||||
|
|
Loading…
Reference in a new issue