mirror of
https://github.com/kmein/niveum
synced 2026-03-18 11:01:07 +01:00
feat(pandoc): use up-to-date version
This commit is contained in:
@@ -275,7 +275,7 @@ in {
|
|||||||
libreoffice
|
libreoffice
|
||||||
# gnumeric
|
# gnumeric
|
||||||
dia
|
dia
|
||||||
pandoc
|
unstablePackages.pandoc
|
||||||
niveumPackages.man-pandoc
|
niveumPackages.man-pandoc
|
||||||
typst
|
typst
|
||||||
# proselint
|
# proselint
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
{config, ...}: let
|
{config, ...}: let
|
||||||
port = 8123;
|
port = 8123;
|
||||||
inherit (import ../../lib) restic;
|
inherit (import ../../lib) restic;
|
||||||
|
influxPort = 9100;
|
||||||
volumeName = "home-assistant.bak";
|
volumeName = "home-assistant.bak";
|
||||||
in {
|
in {
|
||||||
networking.firewall.allowedTCPPorts = [port];
|
networking.firewall.allowedTCPPorts = [port influxPort];
|
||||||
|
|
||||||
services.nginx.virtualHosts."home.kmein.r" = {
|
services.nginx.virtualHosts."home.kmein.r" = {
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
@@ -11,6 +12,13 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.influxdb = {
|
||||||
|
enable = true;
|
||||||
|
extraConfig = {
|
||||||
|
http.bind-address = ":${toString influxPort}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
services.restic.backups.niveum = {
|
services.restic.backups.niveum = {
|
||||||
initialize = true;
|
initialize = true;
|
||||||
inherit (restic) repository;
|
inherit (restic) repository;
|
||||||
|
|||||||
Reference in New Issue
Block a user