aboutsummaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2025-12-14 11:35:04 +0200
committerPetri Hienonen <petri.hienonen@gmail.com>2025-12-14 11:35:04 +0200
commit58e705473cfe5078f109267a1164db81c7fb2da7 (patch)
tree976c568136b61640c9ebed97be0dca833bc3d50b /flake.nix
parent91802c21d446175a02c820bcd243920a0791441b (diff)
downloadpage-58e705473cfe5078f109267a1164db81c7fb2da7.tar.zst
Update
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
+ ];
+ };
}
);
};