librewolf fix & syncthing added

This commit is contained in:
Maddie H 2023-04-17 21:20:06 +01:00
parent b1f64ce943
commit a443023441
Signed by: maddie
GPG Key ID: C296DE8C9053683F
2 changed files with 28 additions and 1 deletions

View File

@ -6,7 +6,7 @@
settings = { settings = {
"browser.uidensity" = 1; "browser.uidensity" = 1;
"webgl.disabled" = false; "webgl.disabled" = false;
"privacy.resistFingerprinting" = false; "privacy.resistFingerprinting" = true;
}; };
}; };
} }

View File

@ -0,0 +1,27 @@
{ config, username, ... }:
{
services.syncthing = {
enable = true;
user = "${username}";
group = "users";
dataDir = "/home/${username}";
configDir = "/home/${username}/.config/syncthing";
guiAddress = "0.0.0.0:8384";
overrideFolders = true;
folders = {
"Documents" = {
path = "/home/${username}/Documents";
};
"Pictures" = {
path = "/home/${username}/Pictures";
};
"Videos" = {
path = "/home/${username}/Videos";
};
"Music" = {
path = "/home/${username}/Music";
};
};
};
}