From 4c81bcbe215aa2cad7a2ec70ac6e712f358288b5 Mon Sep 17 00:00:00 2001 From: Filip Hoffmann Date: Sat, 22 Mar 2025 23:11:43 +0100 Subject: [PATCH] postgresql --- system/configuration.nix | 1 + system/postgresql.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 system/postgresql.nix diff --git a/system/configuration.nix b/system/configuration.nix index f329e1b..04bb9aa 100644 --- a/system/configuration.nix +++ b/system/configuration.nix @@ -20,6 +20,7 @@ in { ./locate.nix ./networking.nix ./nix.nix + ./postgresql.nix ./sound.nix ./swap.nix ./user.nix diff --git a/system/postgresql.nix b/system/postgresql.nix new file mode 100644 index 0000000..165be27 --- /dev/null +++ b/system/postgresql.nix @@ -0,0 +1,5 @@ +{...}: { + services.postgresql = { + enable = true; + }; +} -- 2.51.2