mirror of
https://git.oat.zone/dark-firepit/dotfiles
synced 2024-11-23 02:12:26 +01:00
18 lines
422 B
Nix
18 lines
422 B
Nix
{ inputs, lib, pkgs, ... }:
|
|
|
|
lib.extend (self: super:
|
|
let
|
|
inherit (lib) attrValues foldr;
|
|
inherit (modules) mapModules;
|
|
inherit (helpers) getSSH getWG;
|
|
|
|
modules = import ./modules.nix { inherit lib; };
|
|
helpers = import ./helpers.nix { inherit lib; };
|
|
in {
|
|
_ = foldr (a: b: a // b) {} (attrValues (mapModules ./. (file: import file {
|
|
inherit pkgs inputs;
|
|
lib = self;
|
|
})));
|
|
}
|
|
)
|