11 lines
219 B
Nix
11 lines
219 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
services.seafile = {
|
||
|
enable = true;
|
||
|
gc.enable = true;
|
||
|
group = "nfsShare";
|
||
|
adminEmail = "contact@${config.domains.p2}";
|
||
|
initialAdminPassword = config.secrets.jimboAccPass;
|
||
|
};
|
||
|
}
|