Skip to content

Commit f9100c2

Browse files
committed
nixos/dolibarr: fix casing typos
1 parent 6e5eda4 commit f9100c2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

nixos/modules/services/web-apps/dolibarr.nix

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ let
3030
mkConfigFile =
3131
filename: settings:
3232
let
33-
# hack in special logic for secrets so we read them from a separate file avoiding the nix store
33+
# hack in special logic for secrets so we read them from a separate file avoiding the Nix store
3434
secretKeys = [
3535
"force_install_databasepass"
3636
"dolibarr_main_db_pass"
@@ -313,7 +313,7 @@ in
313313
inherit (cfg) user group;
314314
phpPackage = pkgs.php83.buildEnv {
315315
extensions = { enabled, all }: enabled ++ [ all.calendar ];
316-
# recommended by dolibarr web application
316+
# recommended by Dolibarr web application
317317
extraConfig = ''
318318
session.use_strict_mode = 1
319319
session.cookie_samesite = "Lax"
@@ -331,10 +331,10 @@ in
331331
// cfg.poolConfig;
332332
};
333333

334-
# there are several challenges with dolibarr and NixOS which we can address here
335-
# - the dolibarr installer cannot be entirely automated, though it can partially be by including a file called install.forced.php
336-
# - the dolibarr installer requires write access to its config file during installation, though not afterwards
337-
# - the dolibarr config file generally holds secrets generated by the installer, though the config file is a php file so we can read and write these secrets from an external file
334+
# There are several challenges with Dolibarr and NixOS which we can address here
335+
# - the Dolibarr installer cannot be entirely automated, though it can partially be by including a file called install.forced.php
336+
# - the Dolibarr installer requires write access to its config file during installation, though not afterwards
337+
# - the Dolibarr config file generally holds secrets generated by the installer, though the config file is a PHP file so we can read and write these secrets from an external file
338338
systemd.services.dolibarr-config = {
339339
description = "dolibarr configuration file management via NixOS";
340340
wantedBy = [ "multi-user.target" ];

0 commit comments

Comments
 (0)