diff options
Diffstat (limited to 'utils.nix')
-rw-r--r-- | utils.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/utils.nix b/utils.nix new file mode 100644 index 000000000000..1e1c5c243521 --- /dev/null +++ b/utils.nix @@ -0,0 +1,5 @@ +# Using this as a library to define some common utility functions that I often +# reach for. +{ + identity = x: x; +} |