Make this an overlay flake

master
Michael Raitza 2020-12-06 13:09:02 +01:00
parent a7479419d3
commit 8f92d6eb5b
2 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,6 @@
self: super:
with self;
with self.lib;
final: prev:
with final;
with final.lib;
let
mapAttrs = super.stdenv.lib.mapAttrs;
flip = super.stdenv.lib.flip;

5
flake.nix Normal file
View File

@ -0,0 +1,5 @@
{
outputs = { ... }: {
overlay = import ./default.nix;
};
}