dotfiles/overlays/_nix-path/overlays.nix
2020-11-30 19:03:30 +01:00

7 lines
250 B
Nix

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