tvl-depot/users/wpcarro/utils/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
275 B
Nix
Raw Normal View History

args@{ pkgs, ... }:
# This top-level module exposes all of my utility functions for Nix. It should
# be used like:
# ```nix
# inherit (depot.users.wpcarro.utils) fs;
# ```
let
builder = import ./builder.nix args;
fs = import ./fs.nix args;
in
{
inherit builder fs;
}