summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorMarek Mahut <marek.mahut@gmail.com>2019-09-07 11:29:51 +0200
committerGitHub <noreply@github.com>2019-09-07 11:29:51 +0200
commita2550e2af5047d0a93e692b16fa20967abf83eab (patch)
tree2f3bb0cb6339122e89c9c381f94060951cad7433 /nixos/modules
parent98582c6b5236dcd13a1f5bed68ee45dae6e40af8 (diff)
parentaf9c515c8b0fa978a68f41bd85514ea3475ac4de (diff)
downloadnixpkgs-a2550e2af5047d0a93e692b16fa20967abf83eab.tar
nixpkgs-a2550e2af5047d0a93e692b16fa20967abf83eab.tar.gz
nixpkgs-a2550e2af5047d0a93e692b16fa20967abf83eab.tar.bz2
nixpkgs-a2550e2af5047d0a93e692b16fa20967abf83eab.tar.lz
nixpkgs-a2550e2af5047d0a93e692b16fa20967abf83eab.tar.xz
nixpkgs-a2550e2af5047d0a93e692b16fa20967abf83eab.tar.zst
nixpkgs-a2550e2af5047d0a93e692b16fa20967abf83eab.zip
Merge pull request #68243 from mmahut/jormungandr
nixos/jormungandr: adding RUST_BACKTRACE until service is stable
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/networking/jormungandr.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/nixos/modules/services/networking/jormungandr.nix b/nixos/modules/services/networking/jormungandr.nix
index 68f1e9af9ff..85e804d6cf2 100644
--- a/nixos/modules/services/networking/jormungandr.nix
+++ b/nixos/modules/services/networking/jormungandr.nix
@@ -82,6 +82,9 @@ in {
       description = "jormungandr server";
       wantedBy = [ "multi-user.target" ];
       after = [ "network-online.target" ];
+      environment = {
+        RUST_BACKTRACE = "full";
+      };
       serviceConfig = {
         DynamicUser = true;
         StateDirectory = baseNameOf dataDir;