tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/eintopf: rename package to lauti
Jonas Heinrich
10 months ago
a22c5fac
a19c7490
+3
-3
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
web-apps
eintopf.nix
+3
-3
nixos/modules/services/web-apps/eintopf.nix
···
15
15
{
16
16
options.services.eintopf = {
17
17
18
18
-
enable = mkEnableOption "Eintopf community event calendar web app";
18
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
25
-
<https://codeberg.org/Klasse-Methode/eintopf/src/branch/main/DEPLOYMENT.md>
25
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
57
-
ExecStart = "${pkgs.eintopf}/bin/eintopf";
57
57
+
ExecStart = lib.getExe pkgs.lauti;
58
58
WorkingDirectory = "/var/lib/eintopf";
59
59
StateDirectory = "eintopf";
60
60
EnvironmentFile = [ cfg.secrets ];