refactor: move miasma from networking to apps
Some checks failed
ci / treefmt (push) Has been cancelled

This commit is contained in:
Ceferino Patino 2026-06-13 20:34:19 -05:00
commit 3ca2884629
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@
inherit (lib.${namespace}) getAttrByNamespace mkOptionsWithNamespace hostHasService flattenHostServices getServicePort;
inherit (config.networking) hostName;
base = "${namespace}.services.networking.miasma";
base = "${namespace}.services.apps.miasma";
cfg = getAttrByNamespace config base;
networkCfg = getAttrByNamespace config "${namespace}.services.networking";
networkServices = flattenHostServices networkCfg.network-services;

View file

@ -13,7 +13,7 @@
base = "${namespace}.services.networking.httpd";
cfg = getAttrByNamespace config base;
networkingCfg = getAttrByNamespace config "${namespace}.services.networking";
miasmaCfg = getAttrByNamespace config "${namespace}.services.networking.miasma";
miasmaCfg = getAttrByNamespace config "${namespace}.services.apps.miasma";
networkServices = networkingCfg.network-services;
networkServicesFlat = flattenHostServices networkServices;