dotfiles/overlays/_nix-path/overlays.nix
2024-04-10 10:53:41 +07:00

8 lines
248 B
Nix

self: super:
with super.lib;
let
# Load the system wide overlays
overlays = (import <nixpkgs/nixos> { }).config.nixpkgs.overlays;
in
# Apply all overlays to the input of the current "main" overlay
foldl' (flip extends) (_: super) overlays self