diff options
author | EuAndreh <eu@euandre.org> | 2019-06-02 01:26:36 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-06-02 01:26:36 -0300 |
commit | 45def142a589de05e12495f36266246736a9e3df (patch) | |
tree | 4f407352184f6dfe8fe4e7656faa6050230043a6 /nixos/configuration.nix | |
parent | Test if rust tooling is configured before using it (diff) | |
download | dotfiles-45def142a589de05e12495f36266246736a9e3df.tar.gz dotfiles-45def142a589de05e12495f36266246736a9e3df.tar.xz |
Remove PostgreSQL configuration
Diffstat (limited to 'nixos/configuration.nix')
-rw-r--r-- | nixos/configuration.nix | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 2990a33..3157b57 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -381,20 +381,6 @@ in { pcscd.enable = true; # required by yubioath - # Taken from: - # https://unix.stackexchange.com/questions/378711/how-do-i-configure-postgress-authorization-settings-in-nixos - postgresql = { - enable = false; - package = pkgs.postgresql; - authentication = pkgs.lib.mkForce '' - # Generated file; do not edit! - # TYPE DATABASE USER ADDRESS METHOD - local all all trust - host all all 127.0.0.1/32 trust - host all all ::1/128 trust - ''; - }; - # https://nixos.org/nixos/options.html#ipfs ipfs = { enable = false; |