summaryrefslogtreecommitdiff
path: root/templates/full/nix/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'templates/full/nix/default.nix')
-rw-r--r--templates/full/nix/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/full/nix/default.nix b/templates/full/nix/default.nix
new file mode 100644
index 0000000..c0457fd
--- /dev/null
+++ b/templates/full/nix/default.nix
@@ -0,0 +1,10 @@
+{
+ imports = [
+ ./shell.nix
+ ./packages.nix
+ ];
+
+ perSystem = {pkgs, ...}: {
+ formatter = pkgs.alejandra;
+ };
+}