summaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-06-30 09:45:04 -0400
committerGitHub <[email protected]>2024-06-30 09:45:04 -0400
commitf0e8a00b8af9cfb553bfd7f90d63899158db6df8 (patch)
treebfd03c9e363b68117d1deef9f59cfc575dafb4cf /default.nix
parent509221abec375464985cb45eaf4636e361c13b41 (diff)
style: alejandra -> nixfmt-rfc-style (#4)
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/default.nix b/default.nix
index d66666e..5f64ef0 100644
--- a/default.nix
+++ b/default.nix
@@ -1,10 +1,8 @@
{
- mkChecks = {
- pkgs,
- root,
- }:
+ mkChecks =
+ { pkgs, root }:
pkgs.lib.packagesFromDirectoryRecursive {
- callPackage = path: attrs: pkgs.callPackage path ({inherit root;} // attrs);
+ callPackage = path: attrs: pkgs.callPackage path ({ inherit root; } // attrs);
directory = ./checks;
};
}