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: final: prev:
with self; with final;
with self.lib; with final.lib;
let let
mapAttrs = super.stdenv.lib.mapAttrs; mapAttrs = super.stdenv.lib.mapAttrs;
flip = super.stdenv.lib.flip; flip = super.stdenv.lib.flip;

5
flake.nix Normal file
View File

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