1
Fork 0

Add missing nginx module imports

This commit is contained in:
Matei Adriel 2024-02-02 02:44:22 +01:00
parent d75b4f0ccd
commit e15a9e8892
No known key found for this signature in database
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -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 = { };