[NixOS] Disable pgadmin

This commit is contained in:
Ivan Malison 2024-02-13 12:27:54 -07:00
parent 2458cb6081
commit b034f12adc

View File

@ -25,7 +25,7 @@ makeEnable config "modules.postgres" true {
# ''; # '';
}; };
services.pgadmin = { services.pgadmin = {
enable = true; enable = false;
initialEmail = "IvanMalison@gmail.com"; initialEmail = "IvanMalison@gmail.com";
initialPasswordFile = (builtins.toFile "password" "This is the content of the file."); initialPasswordFile = (builtins.toFile "password" "This is the content of the file.");
}; };