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.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/templates/full/nix/default.nix b/templates/full/nix/default.nix
deleted file mode 100644
index 2033702..0000000
--- a/templates/full/nix/default.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-_: {
- imports = [
- ./dev.nix
- ./pkgs
- ];
-
- systems = [
- "x86_64-linux"
- "aarch64-linux"
- "x86_64-darwin"
- "aarch64-darwin"
- ];
-
- perSystem = {pkgs, ...}: {
- formatter = pkgs.alejandra;
- };
-}