From a4a533dbbd8fbba7ae190c560e51e1579eea76ec Mon Sep 17 00:00:00 2001
From: iFargle <albert@sysctl.io>
Date: Tue, 19 Sep 2023 17:49:01 +0900
Subject: [PATCH] test

---
 flake.nix | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/flake.nix b/flake.nix
index 03d601e3..96263d73 100644
--- a/flake.nix
+++ b/flake.nix
@@ -42,11 +42,10 @@
     imageConfigurations = {
       nixos-rpi4-img = libx.mkImage { hostname = "nixos-rpi4-img";  platform = "aarch64-linux"; format = "sd-aarch64"; };
     };
+    # Devshell for bootstrapping; acessible via 'nix develop' or 'nix-shell' (legacy)
+    devShells = libx.forAllSystems (system:
+      let pkgs = nixpkgs.legacyPackages.${system};
+      in import ./shell.nix { inherit pkgs; }
+    );
   };
-
-  # Devshell for bootstrapping; acessible via 'nix develop' or 'nix-shell' (legacy)
-  devShells = libx.forAllSystems (system:
-    let pkgs = nixpkgs.legacyPackages.${system};
-    in import ./shell.nix { inherit pkgs; }
-  );
 }