about summary refs log tree commit diff
path: root/nix/lib/overlays.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-12-19 12:50:25 -0800
committerFranck Cuny <franck@fcuny.net>2024-12-19 12:50:25 -0800
commit4d1b99df46f99d87a19e638453d7cf99c39b69d5 (patch)
tree11e46fd76a80db3321433eeaaa37e4d7b3b82cd7 /nix/lib/overlays.nix
parentsign using the key from 1password (diff)
downloadworld-4d1b99df46f99d87a19e638453d7cf99c39b69d5.tar.gz
use treefmt to format all the files
Diffstat (limited to '')
-rw-r--r--nix/lib/overlays.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/nix/lib/overlays.nix b/nix/lib/overlays.nix
index 1ec6f49..531c725 100644
--- a/nix/lib/overlays.nix
+++ b/nix/lib/overlays.nix
@@ -1,6 +1,5 @@
 let path = ../../overlays;
 in with builtins;
-map (n: import (path + ("/" + n))) (filter
-  (n:
+map (n: import (path + ("/" + n))) (filter (n:
   match ".*\\.nix" n != null || pathExists (path + ("/" + n + "/default.nix")))
   (attrNames (readDir path)))