1
0
Fork 0

Styx: Install ollama

This commit is contained in:
Daniel Kempkens 2023-11-23 21:33:39 +01:00
parent b3049d4958
commit f07e20dd44
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
2 changed files with 7 additions and 1 deletions

View file

@ -62,6 +62,7 @@
mtr mtr
nix-tree nix-tree
nurl nurl
ollama
ouch ouch
parallel parallel
q q

View file

@ -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 = ''