summaryrefslogtreecommitdiff
path: root/dev/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'dev/default.nix')
-rw-r--r--dev/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/dev/default.nix b/dev/default.nix
new file mode 100644
index 0000000..eff9cc3
--- /dev/null
+++ b/dev/default.nix
@@ -0,0 +1,12 @@
+{
+ imports = [
+ ./checks.nix
+ ./devShell.nix
+ ];
+
+ perSystem =
+ { pkgs, ... }:
+ {
+ formatter = pkgs.nixfmt-rfc-style;
+ };
+}