Skip to content

Commit

Permalink
nix: add default overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
FlafyDev committed Oct 9, 2022
1 parent d491c69 commit 0e3b453
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@
export LD_LIBRARY_PATH=${pkgs.libepoxy}/lib
'';
};
});
}) // {
overlays.default = final: prev: let
pkgs = import nixpkgs {
inherit (prev) system;
};
in {
guifetch = pkgs.callPackage ./nix/package.nix { };
};
};
}

0 comments on commit 0e3b453

Please sign in to comment.