summary refs log tree commit diff
path: root/nixos/modules/services/databases/mongodb.nix
diff options
context:
space:
mode:
authorBob van der Linden <bobvanderlinden@gmail.com>2018-12-19 22:35:49 +0100
committerBob van der Linden <bobvanderlinden@gmail.com>2019-03-20 00:02:43 +0100
commit660ee99293e7c681c3a69bd9446ee3392697c6fa (patch)
tree6b3d287855c274c55d7ae8b1efb3b3e0d780fe3b /nixos/modules/services/databases/mongodb.nix
parent651f05c47c89a1571d17f63bda9e93f73141569a (diff)
downloadnixpkgs-660ee99293e7c681c3a69bd9446ee3392697c6fa.tar
nixpkgs-660ee99293e7c681c3a69bd9446ee3392697c6fa.tar.gz
nixpkgs-660ee99293e7c681c3a69bd9446ee3392697c6fa.tar.bz2
nixpkgs-660ee99293e7c681c3a69bd9446ee3392697c6fa.tar.lz
nixpkgs-660ee99293e7c681c3a69bd9446ee3392697c6fa.tar.xz
nixpkgs-660ee99293e7c681c3a69bd9446ee3392697c6fa.tar.zst
nixpkgs-660ee99293e7c681c3a69bd9446ee3392697c6fa.zip
nixos/mongodb: /var/run -> /run
Diffstat (limited to 'nixos/modules/services/databases/mongodb.nix')
-rw-r--r--nixos/modules/services/databases/mongodb.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/databases/mongodb.nix b/nixos/modules/services/databases/mongodb.nix
index 4c46d9228e5..3fe4af2f261 100644
--- a/nixos/modules/services/databases/mongodb.nix
+++ b/nixos/modules/services/databases/mongodb.nix
@@ -65,7 +65,7 @@ in
       };
 
       pidFile = mkOption {
-        default = "/var/run/mongodb.pid";
+        default = "/run/mongodb.pid";
         description = "Location of MongoDB pid file";
       };