Rename file

This commit is contained in:
soraefir
2026-05-06 23:31:12 +02:00
parent b439888fa8
commit 27a5566ac6

View File

@@ -1,7 +1,7 @@
{ config, pkgs, lib, ... }:
let
serverCfg = config.syscfg.server.containers;
mkContainer = import ./mkContainer.nix { inherit config lib serverCfg; };
mkContainer = import ./builder.nix { inherit config lib serverCfg; };
enabledConfigs = lib.filterAttrs (name: c: c.enable) serverCfg;
containerSetsList = lib.mapAttrsToList (name: containerCfg:
let defs = import (./defs + "/${name}.nix") {inherit config pkgs lib containerCfg mkContainer;};