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.nix15
1 files changed, 13 insertions, 2 deletions
diff --git a/templates/full/nix/default.nix b/templates/full/nix/default.nix
index 4b52983..2033702 100644
--- a/templates/full/nix/default.nix
+++ b/templates/full/nix/default.nix
@@ -1,6 +1,17 @@
_: {
imports = [
- ./packages
- ./flake
+ ./dev.nix
+ ./pkgs
];
+
+ systems = [
+ "x86_64-linux"
+ "aarch64-linux"
+ "x86_64-darwin"
+ "aarch64-darwin"
+ ];
+
+ perSystem = {pkgs, ...}: {
+ formatter = pkgs.alejandra;
+ };
}