| Commit message (Collapse) | Author | Age |
... | |
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
NixVim automatically sets up the capabilities if the nvim_cmp plugin is
activated.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Without this the following code would be completely minimized:
```
{...}:{
services.lua_language={
enable=true;
};
}
```
→
```
{...}:{
services.lua_language={
enable=true;
};
}
```.
Now it should only strip the whitespace at the end of the lines.
|
|
|
|
|
| |
This would otherwise unmap the mapping of n to "g<up>", thus making
upwards movement impossible.
|
| |
|