mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-31 04:58:17 +00:00
14 lines
211 B
Nix
14 lines
211 B
Nix
{ pkgs }:
|
|
|
|
let
|
|
lib = import ../../lib { inherit pkgs; };
|
|
callLib = file: import file {
|
|
inherit (pkgs) lib; inherit pkgs;
|
|
self = lib;
|
|
};
|
|
in
|
|
{
|
|
env = callLib ./env;
|
|
utils = callLib ./utils.nix;
|
|
}
|