Styx: Install ollama
This commit is contained in:
parent
b3049d4958
commit
f07e20dd44
2 changed files with 7 additions and 1 deletions
|
@ -62,6 +62,7 @@
|
|||
mtr
|
||||
nix-tree
|
||||
nurl
|
||||
ollama
|
||||
ouch
|
||||
parallel
|
||||
q
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
{
|
||||
services.postgresql = {
|
||||
enable = true;
|
||||
package = pkgs.postgresql_15;
|
||||
package = pkgs.postgresql_15_jit;
|
||||
enableJIT = true;
|
||||
|
||||
enableTCPIP = true;
|
||||
|
||||
|
@ -11,6 +12,10 @@
|
|||
full_page_writes = "off";
|
||||
wal_init_zero = "off";
|
||||
wal_recycle = "off";
|
||||
|
||||
track_activities = "on";
|
||||
track_counts = "on";
|
||||
autovacuum = "on";
|
||||
};
|
||||
|
||||
authentication = ''
|
||||
|
|
Loading…
Reference in a new issue