mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
17 lines
231 B
Nix
17 lines
231 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;
|
|
}
|