summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-03-16 11:34:26 +0530
committersinanmohd <sinan@sinanmohd.com>2024-03-16 11:34:26 +0530
commite5c9c56ec5fa243206f65ff77bd0f10708a284a3 (patch)
treeca2c533bd734d4daba519b9688cc5ba0666b2eec
parent61265f790e3c32accb3ce844422bb6b23db7fe8a (diff)
flake/shell: add sqlite
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 813d633..42dfbd2 100644
--- a/flake.nix
+++ b/flake.nix
@@ -15,7 +15,7 @@
default = pkgs.mkShell {
name = "dev";
- buildInputs = with pkgs; [ go_1_22 gopls jq ];
+ buildInputs = with pkgs; [ go_1_22 gopls jq sqlite ];
shellHook = ''
export PS1="\033[0;36m[ ]\033[0m $PS1"
'';