|  | Commit message (Collapse) | Author | Age | 
|---|
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| | The files were formatted according to the `.editorconfig` file and with
the formatter from [this](1) repo, as it's the only one that fully
understands all keys in the `.editorconfig` file.
The formatting was chosen in this special (and honestly unconventional)
way because moving code from lua to nix is now easier, as the syntax is
nearly identical in some places. | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | 
| 
| 
| 
| 
| 
| | It is very common, that I'm in a situation with bad contrast on the
laptop screen (for example when in direct sunlight). To remedy the fact,
that I can't see the colours in these situations, the plus and minus
marks were added. | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | diff --git a/system/services/default.nix b/system/services/default.nix
index 994a6d2..c4b9539 100644
--- a/system/services/default.nix
+++ b/system/services/default.nix
@@ -5,6 +5,7 @@
     ./fwupd
     ./nix
     ./openssh
+    ./postgresql
     ./printing
     ./scanning
     #./serverphone
diff --git a/system/services/postgresql/default.nix b/system/services/postgresql/default.nix
new file mode 100644
index 0000000..165be27
--- /dev/null
+++ b/system/services/postgresql/default.nix
@@ -0,0 +1,5 @@
+{...}: {
+  services.postgresql = {
+    enable = true;
+  };
+} | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  | 
| | |  |