aboutsummaryrefslogtreecommitdiff
path: root/nixops
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-03-29 05:45:32 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2019-03-29 05:45:32 +0100
commit61199e9367515ec28f2a24903ea12a7b6747c9c0 (patch)
tree9af6eff4afdbf46f2adc412c353288e172533227 /nixops
parent450e8ce0407970bf544dc010107296cccea0842a (diff)
downloadNix-61199e9367515ec28f2a24903ea12a7b6747c9c0.tar.gz
Nix-61199e9367515ec28f2a24903ea12a7b6747c9c0.tar.zst
Nix-61199e9367515ec28f2a24903ea12a7b6747c9c0.zip
Fix path in mastodon
Diffstat (limited to 'nixops')
-rw-r--r--nixops/modules/websites/tools/mastodon/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixops/modules/websites/tools/mastodon/default.nix b/nixops/modules/websites/tools/mastodon/default.nix
index b0ace56..9f9ea3f 100644
--- a/nixops/modules/websites/tools/mastodon/default.nix
+++ b/nixops/modules/websites/tools/mastodon/default.nix
@@ -71,7 +71,7 @@ in {
71 after = [ "network.target" ]; 71 after = [ "network.target" ];
72 72
73 environment.RAILS_ENV = "production"; 73 environment.RAILS_ENV = "production";
74 environment.BUNDLE_PATH = "${mastodon.gems}/lib/ruby/gems/2.5.0"; 74 environment.BUNDLE_PATH = "${mastodon.gems}/${mastodon.gems.ruby.gemPath}";
75 environment.BUNDLE_GEMFILE = "${mastodon.gems.confFiles}/Gemfile"; 75 environment.BUNDLE_GEMFILE = "${mastodon.gems.confFiles}/Gemfile";
76 environment.SOCKET = mastodon.railsSocket; 76 environment.SOCKET = mastodon.railsSocket;
77 77