several tweaks to note taking apps

This commit is contained in:
Thilo Billerbeck 2024-02-17 02:10:58 +01:00
parent 8cfb05c85f
commit db9f2f2c36
5 changed files with 15 additions and 0 deletions
home-manager/programs

View file

@ -3,6 +3,7 @@
{
programs.git = {
enable = true;
package = pkgs.gitFull;
lfs.enable = true;
userEmail = "thilo.billerbeck@officerent.de";
userName = "Thilo Billerbeck";
@ -26,4 +27,7 @@
branch = { autosetuprebase = "always"; };
};
};
programs.git-credential-oauth = {
enable = true;
};
}

View file

@ -0,0 +1,7 @@
{ config, pkgs, lib, ... }:
{
services.syncthing = {
enable = true;
};
}