enable postgresql

This commit is contained in:
Adithya 2023-08-19 15:05:28 +05:30
parent 8de22c0856
commit f55eb4e05f
Signed by: adtya
GPG key ID: 48FC9915FFD326D0
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,3 @@
{...}: {
imports = [./caddy.nix ./frpc.nix ./ssh.nix];
imports = [./caddy.nix ./frpc.nix ./postgresql.nix ./ssh.nix];
}

View file

@ -0,0 +1,5 @@
_: {
services.postgresql = {
enable = true;
};
}