summaryrefslogtreecommitdiff
path: root/lib/lib.nix
blob: 54d671219c20694523fb82b27eb522a23ba62cdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  lib,
  inputs,
  self,
}:
let
  builders = import ./builders.nix { inherit lib inputs self; };
in
{
  inherit builders;

  inherit (builders)
    nixosSystem
    nixosSystemStable
    darwinSystem
    homeManagerConfiguration
    ;

  nginx = import ./nginx.nix lib;
}