1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

host gemini

This commit is contained in:
2025-09-05 08:05:02 +02:00
parent 2c75c0d608
commit db33374dc0
2 changed files with 16 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ in {
./radio.nix ./radio.nix
./panoptikon.nix ./panoptikon.nix
./hledger.nix ./hledger.nix
./gemini.nix
./wallabag.nix ./wallabag.nix
./alew.nix ./alew.nix
../../configs/monitoring.nix ../../configs/monitoring.nix

15
systems/ful/gemini.nix Normal file
View File

@@ -0,0 +1,15 @@
{ 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
];
}