infra/lib/default.nix

19 lines
486 B
Nix
Raw Normal View History

2023-10-27 21:06:55 +00:00
{ self, lib, inputs, ... }: {
# Configuration common to all Linux systems
flake = {
lib =
let
callLibs = file: import file { inherit lib; };
in
rec {
## Define your own library functions here!
#id = x: x;
## Or in files, containing functions that take {lib}
#foo = callLibs ./foo.nix;
## In configs, they can be used under "lib.our"
2023-10-27 21:06:55 +00:00
deploy = import ./deploy.nix { inherit inputs lib; };
};
2023-10-27 21:06:55 +00:00
};
}