From 283964a390e700769ebfc48e2846881c6d993ae2 Mon Sep 17 00:00:00 2001 From: bitbloxhub <45184892+bitbloxhub@users.noreply.github.com> Date: Fri, 8 May 2026 00:41:27 +0000 Subject: [PATCH] nixos/reframe: start configured reframe-server@ instances automatically Assisted-by: pi:gpt-5.3-codex --- nixos/modules/services/networking/reframe.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/modules/services/networking/reframe.nix b/nixos/modules/services/networking/reframe.nix index 126cc24f4dae..81e1f4ab1e16 100644 --- a/nixos/modules/services/networking/reframe.nix +++ b/nixos/modules/services/networking/reframe.nix @@ -182,6 +182,12 @@ in source = iniFmt.generate "${name}.conf" value; } ) cfg.configs; + systemd.services = lib.mapAttrs' ( + name: _: + lib.nameValuePair "reframe-server@${name}" { + wantedBy = [ "multi-user.target" ]; + } + ) cfg.configs; }; meta.maintainers = with lib.maintainers; [