summaryrefslogtreecommitdiff
path: root/templates/full/nix/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-09-24 14:24:05 -0400
committerseth <[email protected]>2023-09-24 14:24:05 -0400
commit9b912d435520c1f0cc952c46a2c75100457cc245 (patch)
treeb4c0646d7539c63b1a24dd06d66d1797204b88c3 /templates/full/nix/default.nix
parent0f7848c8a6936bc80b043b2d2308ef0d85633b13 (diff)
templates/final: use slightly better practices
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;
- };
-}