mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
21 lines
666 B
Nix
21 lines
666 B
Nix
# The entrypoint for our custom library set.
|
|
#
|
|
# Take note, this is modularly included as part of the environment so we cannot
|
|
# have any functions or references that could make the evaluation go in an
|
|
# infinite recursion such as a function that generates a valid nixpkgs module.
|
|
# If you have to add those functions, you'll have to add them in configUtils.
|
|
{ pkgs }:
|
|
|
|
pkgs.lib.makeExtensible
|
|
(self:
|
|
let
|
|
inherit (pkgs) lib;
|
|
callLib = file: import file { inherit pkgs lib self; };
|
|
in {
|
|
trivial = callLib ./trivial.nix;
|
|
data = callLib ./data.nix;
|
|
|
|
inherit (self.trivial) countAttrs;
|
|
inherit (self.data) importYAML renderTeraTemplate;
|
|
})
|