action runner & webref stuff
This commit is contained in:
parent
007744fb84
commit
14d3e6b1ee
@ -151,5 +151,22 @@ in
|
|||||||
acceleration = "cuda";
|
acceleration = "cuda";
|
||||||
models = "/srv/ai/ollama";
|
models = "/srv/ai/ollama";
|
||||||
};
|
};
|
||||||
|
postgresql = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.postgresql_17;
|
||||||
|
enableTCPIP = true;
|
||||||
|
authentication = pkgs.lib.mkOverride 10 ''
|
||||||
|
local all all trust
|
||||||
|
host all all ${config.my.localhost}/32 trust
|
||||||
|
host all all ::1/128 trust
|
||||||
|
'';
|
||||||
|
ensureDatabases = [ "webref" ];
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = "webref";
|
||||||
|
ensureDBOwnership = true;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@ -41,8 +41,8 @@ in
|
|||||||
nodejs
|
nodejs
|
||||||
python3
|
python3
|
||||||
postgresql
|
postgresql
|
||||||
docker
|
podman
|
||||||
docker-compose
|
podman-compose
|
||||||
attic-client
|
attic-client
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user