1
Fork 0

Make debug logs work

This commit is contained in:
Matei Adriel 2024-02-02 02:54:29 +01:00
parent 18fc9261a3
commit 5137a29a3a
No known key found for this signature in database

View file

@ -16,12 +16,10 @@ in
# leads to infinite recursion!
let
m = inputs.intray.nixosModules.x86_64-linux.default { inherit lib pkgs config; };
b = lib.traceVal m;
in
{
inherit (m) options;
config = lib.mkIf config.services.intray.production.enable { systemd = m.config.systemd; };
config = lib.mkIf config.services.intray.production.enable { systemd = (lib.traceVal m).config.systemd; };
})
];
# }}}