From 01ad39c0b595539ec5961f256b49244005736850 Mon Sep 17 00:00:00 2001 From: utox39 Date: Tue, 15 Jul 2025 02:19:56 +0200 Subject: [PATCH] fix(config): fix the order of the enum --- src/config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.zig b/src/config.zig index da3f349..b6ab4f0 100644 --- a/src/config.zig +++ b/src/config.zig @@ -23,9 +23,9 @@ pub const ModuleType = enum { ram, swap, disk, + net, terminal, locale, - net, // It must always be the last element of this array }; pub fn getModulesTypes(allocator: std.mem.Allocator, config: ?std.json.Parsed(Config)) !std.ArrayList(ModuleType) {