forked from Drift/pvv-nixos-config
9 lines
283 B
Nix
9 lines
283 B
Nix
|
self: super:
|
||
|
with super.lib;
|
||
|
let
|
||
|
# Load the system config and get the `nixpkgs.overlays` option
|
||
|
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
|