We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e867784 commit b36dba3Copy full SHA for b36dba3
nix/module.nix
@@ -77,11 +77,11 @@ self:
77
};
78
79
environment = {
80
- PORT = builtins.toString cfg.port;
81
- HOST = cfg.host;
82
- REDIRECT_HOST = cfg.redirectHost;
83
- REDIRECT_SCHEME = cfg.redirectScheme;
84
- CLIENT_ID = builtins.toString cfg.clientId;
+ PORT = builtins.toString cfg.settings.port;
+ HOST = cfg.settings.host;
+ REDIRECT_HOST = cfg.settings.redirectHost;
+ REDIRECT_SCHEME = cfg.settings.redirectScheme;
+ CLIENT_ID = builtins.toString cfg.settings.clientId;
85
86
87
0 commit comments