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
|
mtr
|
||||||
nix-tree
|
nix-tree
|
||||||
nurl
|
nurl
|
||||||
|
ollama
|
||||||
ouch
|
ouch
|
||||||
parallel
|
parallel
|
||||||
q
|
q
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
{
|
{
|
||||||
services.postgresql = {
|
services.postgresql = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.postgresql_15;
|
package = pkgs.postgresql_15_jit;
|
||||||
|
enableJIT = true;
|
||||||
|
|
||||||
enableTCPIP = true;
|
enableTCPIP = true;
|
||||||
|
|
||||||
|
@ -11,6 +12,10 @@
|
||||||
full_page_writes = "off";
|
full_page_writes = "off";
|
||||||
wal_init_zero = "off";
|
wal_init_zero = "off";
|
||||||
wal_recycle = "off";
|
wal_recycle = "off";
|
||||||
|
|
||||||
|
track_activities = "on";
|
||||||
|
track_counts = "on";
|
||||||
|
autovacuum = "on";
|
||||||
};
|
};
|
||||||
|
|
||||||
authentication = ''
|
authentication = ''
|
||||||
|
|
Loading…
Reference in a new issue