librewolf fix & syncthing added
This commit is contained in:
parent
b1f64ce943
commit
a443023441
@ -6,7 +6,7 @@
|
||||
settings = {
|
||||
"browser.uidensity" = 1;
|
||||
"webgl.disabled" = false;
|
||||
"privacy.resistFingerprinting" = false;
|
||||
"privacy.resistFingerprinting" = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
27
systems/mdesktop/syncthing.nix
Normal file
27
systems/mdesktop/syncthing.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user