mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
14 lines
284 B
Nix
14 lines
284 B
Nix
# The entrypoint for our custom library set.
|
|
{ pkgs }:
|
|
|
|
pkgs.lib.makeExtensible
|
|
(self:
|
|
let
|
|
inherit (pkgs) lib;
|
|
callLib = file: import file { inherit pkgs lib self; };
|
|
in {
|
|
trivial = callLib ./trivial.nix;
|
|
|
|
inherit (self.trivial) countAttrs getConfig getUser;
|
|
})
|