aboutsummaryrefslogtreecommitdiffstats
path: root/shell.nix
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2024-06-11 14:13:13 +0000
committerterminaldweller <devi@terminaldweller.com>2024-06-11 14:13:13 +0000
commit556c839dc1b5881c1594dbdfede0bd610790967d (patch)
treef27987d2387fa86d3644df778c96491bd2bf7d1c /shell.nix
parentadded a new lua function, query_db (diff)
downloadmilla-556c839dc1b5881c1594dbdfede0bd610790967d.tar.gz
milla-556c839dc1b5881c1594dbdfede0bd610790967d.zip
added a shell.nix for pgformatter, and a wip trigger for db size maintenance
Diffstat (limited to '')
-rw-r--r--shell.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..442fa42
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,4 @@
+{ pkgs ? import <nixpkgs> {} }:
+ pkgs.mkShell {
+ nativeBuildInputs = with pkgs.buildPackages; [ pgformatter ];
+}