nixos/eintopf: rename package to lauti

Changed files
+3 -3
nixos
modules
services
web-apps
+3 -3
nixos/modules/services/web-apps/eintopf.nix
···
{
options.services.eintopf = {
-
enable = mkEnableOption "Eintopf community event calendar web app";
+
enable = mkEnableOption "Lauti (Eintopf) community event calendar web app";
settings = mkOption {
type = types.attrsOf types.str;
default = { };
description = ''
Settings to configure web service. See
-
<https://codeberg.org/Klasse-Methode/eintopf/src/branch/main/DEPLOYMENT.md>
+
<https://codeberg.org/Klasse-Methode/lauti/src/branch/main/DEPLOYMENT.md>
for available options.
'';
example = literalExpression ''
···
wants = [ "network-online.target" ];
environment = cfg.settings;
serviceConfig = {
-
ExecStart = "${pkgs.eintopf}/bin/eintopf";
+
ExecStart = lib.getExe pkgs.lauti;
WorkingDirectory = "/var/lib/eintopf";
StateDirectory = "eintopf";
EnvironmentFile = [ cfg.secrets ];