all repos — char/flake @ 206cbde6235bc701ea187e96b2b51b420b8bc1b9

nixos flake

runestone: remove postgres

we don't need it now that we don't work on orbismmo
Charlotte Som charlotte@som.codes
Fri, 15 May 2026 14:42:52 +0100
commit

206cbde6235bc701ea187e96b2b51b420b8bc1b9

parent

3099963175bc1905c8ed32b7024281aa139c734a

2 files changed, 0 insertions(+), 21 deletions(-)

jump to
M flake.nixflake.nix

@@ -44,7 +44,6 @@

./profiles/runestone/hardware-configuration.nix ./profiles/runestone/base.nix ./profiles/runestone/borg.nix - ./profiles/runestone/postgres.nix ]; };
D profiles/runestone/postgres.nix

@@ -1,20 +0,0 @@

-{ pkgs, ... }: { - services.postgresql = { - enable = true; - enableTCPIP = true; - settings = { - listen_addresses = pkgs.lib.mkForce "0.0.0.0"; - port = pkgs.lib.mkForce 5432; - }; - ensureDatabases = [ "orbismmo" ]; - ensureUsers = [{ - name = "orbismmo"; - ensureDBOwnership = true; - }]; - authentication = pkgs.lib.mkOverride 10 '' - local all all trust - host all all 0.0.0.0/0 scram-sha-256 - host all all ::0/0 scram-sha-256 - ''; - }; -}