lol

nixos/eintopf: rename package to lauti

+3 -3
+3 -3
nixos/modules/services/web-apps/eintopf.nix
··· 15 15 { 16 16 options.services.eintopf = { 17 17 18 - enable = mkEnableOption "Eintopf community event calendar web app"; 18 + enable = mkEnableOption "Lauti (Eintopf) community event calendar web app"; 19 19 20 20 settings = mkOption { 21 21 type = types.attrsOf types.str; 22 22 default = { }; 23 23 description = '' 24 24 Settings to configure web service. See 25 - <https://codeberg.org/Klasse-Methode/eintopf/src/branch/main/DEPLOYMENT.md> 25 + <https://codeberg.org/Klasse-Methode/lauti/src/branch/main/DEPLOYMENT.md> 26 26 for available options. 27 27 ''; 28 28 example = literalExpression '' ··· 54 54 wants = [ "network-online.target" ]; 55 55 environment = cfg.settings; 56 56 serviceConfig = { 57 - ExecStart = "${pkgs.eintopf}/bin/eintopf"; 57 + ExecStart = lib.getExe pkgs.lauti; 58 58 WorkingDirectory = "/var/lib/eintopf"; 59 59 StateDirectory = "eintopf"; 60 60 EnvironmentFile = [ cfg.secrets ];