mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
16 lines
333 B
Nix
16 lines
333 B
Nix
|
|
{ config, ... }:
|
||
|
|
{
|
||
|
|
networking.firewall.allowedTCPPorts = [ 1965 ];
|
||
|
|
services.agate = {
|
||
|
|
enable = true;
|
||
|
|
addresses = [ "0.0.0.0:1965" ];
|
||
|
|
hostnames = [ "kmein.de" ];
|
||
|
|
language = "de";
|
||
|
|
};
|
||
|
|
|
||
|
|
services.restic.backups.niveum.paths = [
|
||
|
|
config.services.agate.contentDir
|
||
|
|
config.services.agate.certificatesDir
|
||
|
|
];
|
||
|
|
}
|