| Commit message (Collapse) | Author | Age |
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
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;
+ };
+}
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Vim tex doesnn't really not work with treesitter, and nightfox doesn't
really work without treesitter thus a new colorscheme was chooses.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
The default lf rename command starts behind the extension like this:
```
filename.extension
^
|
startpoint
```
This new cmd avoids this.
|
|
|
|
|
| |
I mostly create files from vim, thus editing them in the terminal with
created them is useless.
|
| |
|
| |
|