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