about summary refs log tree commit diff
path: root/users/wpcarro/utils/default.nix
blob: 46d30acfa24e4f923d6cd8356cfd4731ddbc316c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
}