17 lines
387 B
Nix
17 lines
387 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../home-default.nix
|
|
../../../modules/syncthing.nix
|
|
../../../modules/media/tool.nix
|
|
];
|
|
|
|
syncthing-custom.folders = {
|
|
Credentials = { enable = true; maxAgeDays = 30; };
|
|
Documents = { enable = true; maxAgeDays = 30; };
|
|
Media = { enable = true; maxAgeDays = 7; };
|
|
Archive = { enable = true; maxAgeDays = 30; };
|
|
};
|
|
|
|
}
|