diff options
author | Franck Cuny <franck@fcuny.net> | 2024-12-19 12:50:25 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-12-19 12:50:25 -0800 |
commit | 4d1b99df46f99d87a19e638453d7cf99c39b69d5 (patch) | |
tree | 11e46fd76a80db3321433eeaaa37e4d7b3b82cd7 /nix/lib/overlays.nix | |
parent | sign using the key from 1password (diff) | |
download | world-4d1b99df46f99d87a19e638453d7cf99c39b69d5.tar.gz |
use treefmt to format all the files
Diffstat (limited to '')
-rw-r--r-- | nix/lib/overlays.nix | 3 |
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))) |