mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-08 19:46:10 +01:00
7 lines
219 B
Nix
7 lines
219 B
Nix
# This file is necessary so nix-env -qa does not break,
|
|
# when nixos-hardware is used as a channel
|
|
{ pkgs }:
|
|
import ./toplevel.nix {
|
|
fn = p: pkgs.callPackages "${builtins.toString p}/all.nix";
|
|
inherit (pkgs) lib;
|
|
}
|