From 07b15aec19b9ebfdbef9f50fdb1d401517a39d75 Mon Sep 17 00:00:00 2001 From: Mork Swork Date: Thu, 14 May 2026 14:25:32 -0700 Subject: [PATCH] Fix arion --- nixos/linux.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nixos/linux.nix b/nixos/linux.nix index e82b273..df3d857 100644 --- a/nixos/linux.nix +++ b/nixos/linux.nix @@ -83,6 +83,17 @@ in { } ]; + systemd.services.forgejo-arion = { + description = "Forgejo via Arion"; + after = [ "network.target" "podman.service" ]; + wantedBy = [ "multi-user.target" ]; + serviceConfig = { + Type = "oneshot"; + RemainAfterExit = true; + ExecStart = "${start-arion-run}/bin/start-arion-run"; + }; + }; + systemd.tmpfiles.rules = [ "d /home/ironmagma/.config 0755 ${username} users" "d /root/.config 0755 ${username} users"