init: Add crossbox's configurations

This commit is contained in:
Matthew Binning 2026-01-10 10:55:18 -08:00
parent 9339a28783
commit cbac6cd532
8 changed files with 632 additions and 0 deletions

26
syncthing.nix Normal file
View file

@ -0,0 +1,26 @@
{ config, pkgs, ... }:
{
services.syncthing = {
enable = true;
openDefaultPorts = true;
user = "brimlock";
group = "users";
dataDir = "/home/brimlock/syncthing";
configDir = "/home/brimlock/.config/syncthing";
settings = {
/* gui = {
user = "brimlock";
};*/
devices = {
"dagger" = { id = "TODPOIO-CEK5N7S-I2X6PLL-YZ4NVEA-L4QRN4Y-7R4FR46-53S2EC2-C7AEAA4-ID-GOES-HERE"; };
};
folders = {
"Sync" = {
path = "/home/brimlock/Sync";
devices = [ "dagger" ];
};
};
};
};
}