From c153a351659e4596acfc31f00bf594343cbfcd68 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Thu, 30 Jul 2026 14:05:39 +0200 Subject: modules: Use namespaces That might make it easier in the future to merge different server configs together (and thusly facilitate code-reuse.). --- modules/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'modules/default.nix') diff --git a/modules/default.nix b/modules/default.nix index 0618f90..bcafc53 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -1,10 +1,14 @@ {nixLib, ...}: let - files = builtins.attrValues ( + vhack = builtins.attrValues ( nixLib.mkByName { - baseDirectory = ./by-name; + baseDirectory = ./vhack; fileName = "module.nix"; } ); + + files = + [] + ++ vhack; in { imports = files; } -- cgit v1.3.1