Bruno BELANYI
a868088cc9
Now that `nix flake check` doesn't complain about it anymore, try to be consistent about using that feature.
18 lines
398 B
Nix
18 lines
398 B
Nix
{ self, ... }:
|
|
let
|
|
default-overlays = import "${self}/overlays";
|
|
|
|
additional-overlays = {
|
|
# Expose my expanded library
|
|
lib = _final: _prev: { inherit (self) lib; };
|
|
|
|
# Expose my custom packages
|
|
pkgs = _final: prev: {
|
|
ambroisie = prev.recurseIntoAttrs (import "${self}/pkgs" { pkgs = prev; });
|
|
};
|
|
};
|
|
in
|
|
{
|
|
flake.overlays = default-overlays // additional-overlays;
|
|
}
|