1
0
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:
2023-09-03 17:50:48 +02:00
parent e76489b6d8
commit 53bbc65716
2 changed files with 10 additions and 2 deletions

View File

@@ -275,7 +275,7 @@ in {
libreoffice libreoffice
# gnumeric # gnumeric
dia dia
pandoc unstablePackages.pandoc
niveumPackages.man-pandoc niveumPackages.man-pandoc
typst typst
# proselint # proselint

View File

@@ -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;