Add missing nginx module imports
This commit is contained in:
parent
d75b4f0ccd
commit
e15a9e8892
|
@ -9,6 +9,7 @@ in
|
|||
{
|
||||
# {{{ Import intray module
|
||||
imports = [
|
||||
../../common/optional/services/nginx.nix
|
||||
# We patch out the `intray` module to allow manual configuration for nginx
|
||||
(a:
|
||||
# NOTE: using `pkgs.system` before `module.options` is evaluated
|
||||
|
|
|
@ -2,7 +2,10 @@
|
|||
let port = 8384;
|
||||
in
|
||||
{
|
||||
imports = [ ../../common/optional/services/syncthing.nix ];
|
||||
imports = [
|
||||
../../common/optional/services/syncthing.nix
|
||||
../../common/optional/services/nginx.nix
|
||||
];
|
||||
|
||||
services.syncthing = {
|
||||
settings.folders = { };
|
||||
|
|
Loading…
Reference in a new issue