Fix intray server config syntax error
This commit is contained in:
parent
e37b3bc363
commit
d75b4f0ccd
|
@ -10,15 +10,15 @@ in
|
||||||
# {{{ Import intray module
|
# {{{ Import intray module
|
||||||
imports = [
|
imports = [
|
||||||
# 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
|
||||||
# leads to infinite recursion!
|
# leads to infinite recursion!
|
||||||
let m = inputs.intray.nixosModules.x86_64-linux.default a;
|
let m = inputs.intray.nixosModules.x86_64-linux.default a;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
inherit (m) options;
|
inherit (m) options;
|
||||||
config = { inherit (m.config) systemd; };
|
config = { inherit (m.config) systemd; };
|
||||||
}
|
})
|
||||||
];
|
];
|
||||||
# }}}
|
# }}}
|
||||||
# {{{ Configure intray
|
# {{{ Configure intray
|
||||||
|
|
Loading…
Reference in a new issue