about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--flake.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index aaabb54..2153c79 100644
--- a/flake.nix
+++ b/flake.nix
@@ -84,12 +84,22 @@
 		 # Create a Python venv with the default dependency group
 		 pythonEnv = pythonSet.mkVirtualEnv "focaccia-env" workspace.deps.default;
 	in {
+		# Default package just builds Focaccia
 		packages.default = pythonEnv;
 
+		# Default app is just Focaccia
 		apps.default = {
 			type = "app";
 			program = "${self.packages.default}/bin/focaccia";
 		};
+
+		# Developer shell that includes Focaccia and QEMU
+		devShells.default = pkgs.mkShell {
+			packages = [
+				pythonEnv
+				pkgs.qemu
+			];
+		};
 	});
 }