blob: 59aa322076b4326b29b15309f78e788210107aa7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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;
}
|