about summary refs log tree commit diff
path: root/utils.nix
diff options
context:
space:
mode:
Diffstat (limited to 'utils.nix')
-rw-r--r--utils.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils.nix b/utils.nix
new file mode 100644
index 0000000000..1e1c5c2435
--- /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;
+}