aboutsummaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 2cf8f59..2838c53 100644
--- a/flake.nix
+++ b/flake.nix
@@ -21,7 +21,12 @@
pkgs = nixpkgsFor.${system};
in
{
- default = pkgs.mkShell { buildInputs = with pkgs; [ biome ]; };
+ default = pkgs.mkShell {
+ buildInputs = with pkgs; [
+ biome
+ go
+ ];
+ };
}
);
};