Add default.nix and overlay.nix for easy importing

This commit is contained in:
Mark Vainomaa
2021-02-28 16:38:32 +02:00
parent 7f1233426e
commit a33e264d7d
2 changed files with 12 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
{
nixpkgs.overlays = [
(import ./overlay.nix)
];
}
+7
View File
@@ -0,0 +1,7 @@
self: super:
let
callPackage = super.callPackage;
in {
linux-mbp = callPackage ./packages/kernel/linux-mbp {};
}