From 2cd0de8eeb0d7692df6bc9e2b4b73992da93cdb3 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Wed, 15 May 2024 22:42:18 +0200 Subject: [PATCH] common: add sqlite-interactive to systemPackages we have stuff stored in sqlite, might as well have the client available by default, given how often we use it. sqlite-interactive is an override on sqlite in nixpkgs which enables support for readline & ncurses, which are off by default. --- common/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/common/default.nix b/common/default.nix index 1cb1d28..fc761fc 100644 --- a/common/default.nix +++ b/common/default.nix @@ -75,6 +75,7 @@ ffmpeg-full bat niv + sqlite-interactive ]; security.acme.defaults.email = "info+acme@hacc.space";