added syncthing

This commit is contained in:
specCon18 2023-07-29 02:54:31 -04:00
parent e34907e038
commit b8907010fe
8 changed files with 46 additions and 17 deletions

View file

@ -8,7 +8,7 @@
columns = 120;
lines = 25;
};
decorations = "none";
decorations = "full";
opacity = 0.9;
title = "Alacritty";
};

View file

@ -0,0 +1,4 @@
{ pkgs, config, lib, ...}:
{
wa
}

View file

@ -5,5 +5,7 @@
libsForQt5.qt5.qtwayland
qt6.qtwayland
eww-wayland
waybar
hyprpaper
];
}

View file

@ -0,0 +1,21 @@
{config, lib, pkgs, modulesPath, ... }:
{
services.syncthing = {
enable = true;
dataDir = "/home/speccon18";
openDefaultPorts = true;
configDir = "/home/speccon18/.config/syncthing";
user = "speccon18";
group = "users";
extraOptions.gui = {
user = "admin";
password = "Strife-Rerun-Lily-Pushover-Alongside-Raider0-Freebase";
};
guiAddress = "0.0.0.0:8384";
overrideDevices = true;
overrideFolders = true;
devices = {
"syncthing_server" = { id = "N3UGNP6-ZU6JHBX-WNJDEUF-FV5DOWA-VAGFDYN-FIIMFRR-C3HGQHU-WOEIUQ6"; };
};
};
}