fix evaluation errors

This commit is contained in:
Gabriel Fontes
2024-03-19 06:08:28 -03:00
parent 9c1269afe8
commit a20980d916
2 changed files with 0 additions and 15 deletions
-1
View File
@@ -34,7 +34,6 @@ in {
# programs.git.userEmail = "gabriel@zoocha.com";
home.packages = [
pkgs.drush
pkgs.inputs.awscli-console.default
];
programs.awscli.enable = true;
-14
View File
@@ -13,18 +13,4 @@
];
networking.firewall.allowedTCPPorts = [ 5432 ];
services.postgresql = {
enableTCPIP = true;
ensureDatabases = [ "projeto_cloud" ];
ensureUsers = [{
name = "projeto_cloud";
ensurePermissions = {
"DATABASE projeto_cloud" = "ALL PRIVILEGES";
};
}];
authentication = ''
host projeto_cloud projeto_cloud 0.0.0.0/0 md5
host projeto_cloud projeto_cloud ::/0 md5
'';
};
}