summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/databases
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-05-19 22:11:38 -0400
committerfigsoda <figsoda@pm.me>2023-05-19 22:31:04 -0400
commit701bcdbead7597cddd3fc92a3581da95a138ef45 (patch)
treeea0f189faa8509d9d391dbfcdf5f51d10376634f /nixos/modules/services/databases
parenta31ca7f2202c5f2bcf7b943bee021f69f9bdd5c5 (diff)
nixos: fix typos
Diffstat (limited to 'nixos/modules/services/databases')
-rw-r--r--nixos/modules/services/databases/cockroachdb.nix2
-rw-r--r--nixos/modules/services/databases/couchdb.nix2
-rw-r--r--nixos/modules/services/databases/firebird.nix2
-rw-r--r--nixos/modules/services/databases/mongodb.nix2
4 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/services/databases/cockroachdb.nix b/nixos/modules/services/databases/cockroachdb.nix
index 26ccb030b3df..ff77d30588fe 100644
--- a/nixos/modules/services/databases/cockroachdb.nix
+++ b/nixos/modules/services/databases/cockroachdb.nix
@@ -164,7 +164,7 @@ in
example = [ "--advertise-addr" "[fe80::f6f2:::]" ];
description = lib.mdDoc ''
Extra CLI arguments passed to {command}`cockroach start`.
- For the full list of supported argumemnts, check <https://www.cockroachlabs.com/docs/stable/cockroach-start.html#flags>
+ For the full list of supported arguments, check <https://www.cockroachlabs.com/docs/stable/cockroach-start.html#flags>
'';
};
};
diff --git a/nixos/modules/services/databases/couchdb.nix b/nixos/modules/services/databases/couchdb.nix
index cdf32654e663..0a81a8dceeee 100644
--- a/nixos/modules/services/databases/couchdb.nix
+++ b/nixos/modules/services/databases/couchdb.nix
@@ -141,7 +141,7 @@ in {
type = types.lines;
default = "";
description = lib.mdDoc ''
- Extra configuration. Overrides any other cofiguration.
+ Extra configuration. Overrides any other configuration.
'';
};
diff --git a/nixos/modules/services/databases/firebird.nix b/nixos/modules/services/databases/firebird.nix
index 4c2855345368..26ed46f0e60c 100644
--- a/nixos/modules/services/databases/firebird.nix
+++ b/nixos/modules/services/databases/firebird.nix
@@ -1,6 +1,6 @@
{ config, lib, pkgs, ... }:
-# TODO: This may file may need additional review, eg which configuartions to
+# TODO: This may file may need additional review, eg which configurations to
# expose to the user.
#
# I only used it to access some simple databases.
diff --git a/nixos/modules/services/databases/mongodb.nix b/nixos/modules/services/databases/mongodb.nix
index 211133de63fe..8f3be1492e9e 100644
--- a/nixos/modules/services/databases/mongodb.nix
+++ b/nixos/modules/services/databases/mongodb.nix
@@ -142,7 +142,7 @@ in
User = cfg.user;
PIDFile = cfg.pidFile;
Type = "forking";
- TimeoutStartSec=120; # intial creating of journal can take some time
+ TimeoutStartSec=120; # initial creating of journal can take some time
PermissionsStartOnly = true;
};