fix: correct config option names
This commit is contained in:
parent
80834ea71c
commit
f7e030244b
1 changed files with 2 additions and 2 deletions
|
|
@ -21,7 +21,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
security.acme.acceptTerms = config.aether.https;
|
security.acme.acceptTerms = config.aether.https;
|
||||||
security.acme.defaults.email = cfg.acmeEmail;
|
security.acme.defaults.email = config.aether.acmeEmail;
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||||||
|
|
||||||
|
|
@ -41,7 +41,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.tmpfiles.rules =
|
systemd.tmpfiles.rules =
|
||||||
lib.optional (!(builtins.isNull cfg.themes))
|
lib.optional (!(builtins.isNull cfg.theme))
|
||||||
"L+ ${forgejo.stateDir}/custom/public/assets - - - - ${cfg.theme}"
|
"L+ ${forgejo.stateDir}/custom/public/assets - - - - ${cfg.theme}"
|
||||||
++ lib.optional (!(builtins.isNull cfg.templates))
|
++ lib.optional (!(builtins.isNull cfg.templates))
|
||||||
"L+ ${forgejo.stateDir}/custom/templates - - - - ${cfg.templates}";
|
"L+ ${forgejo.stateDir}/custom/templates - - - - ${cfg.templates}";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue