diff --git a/hosts/lambdaos/configuration.nix b/hosts/lambdaos/configuration.nix index 6e6c923..c39599f 100644 --- a/hosts/lambdaos/configuration.nix +++ b/hosts/lambdaos/configuration.nix @@ -258,6 +258,16 @@ }; services = { + postgresql = { + enable = true; + ensureDatabases = [ "noa" ]; + ensureUsers = [ + { + name = "noa"; + ensureDBOwnership = true; + } + ]; + }; ollama = { enable = true; acceleration = "cuda";