From b034f12adc91811f3d25767d78cdde08eed47c81 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 13 Feb 2024 12:27:54 -0700 Subject: [PATCH] [NixOS] Disable pgadmin --- nixos/postgres.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/postgres.nix b/nixos/postgres.nix index b79e9212..0718a4f1 100644 --- a/nixos/postgres.nix +++ b/nixos/postgres.nix @@ -25,7 +25,7 @@ makeEnable config "modules.postgres" true { # ''; }; services.pgadmin = { - enable = true; + enable = false; initialEmail = "IvanMalison@gmail.com"; initialPasswordFile = (builtins.toFile "password" "This is the content of the file."); };