home/sqlite: init

This commit is contained in:
2025-04-22 20:06:07 +02:00
parent ed946ece62
commit a99a522f41
2 changed files with 16 additions and 0 deletions

View File

@@ -34,6 +34,7 @@ in {
./programs/pandoc.nix
./programs/ripgrep.nix
./programs/skim.nix
./programs/sqlite.nix
./programs/ssh
./programs/tealdeer
./programs/texlive.nix

15
home/programs/sqlite.nix Normal file
View File

@@ -0,0 +1,15 @@
{ pkgs, ... }:
{
xdg.configFile."sqlite3/sqliterc".text = ''
.bail on
.changes on
.headers on
.mode box
.nullvalue '<NULL>'
.timer on
'';
home.packages = [
pkgs.sqlite-interactive
];
}