From b9bbd253ebcb16a162c05fe29e55bd91c866c0fb Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Fri, 29 May 2026 09:43:09 +0100 Subject: [PATCH] fix(2pc): rename unit docker-prune -> ci-docker-prune (NixOS docker module reserves docker-prune) The committed module used systemd.services.docker-prune, which conflicts with the NixOS docker module's own docker-prune unit (`nixos-rebuild build` error: conflicting definition values). The deployed+verified host already runs ci-docker-prune; this syncs the repo so a cold build matches. Co-Authored-By: Claude Opus 4.8 (1M context) --- nix/modules/docker-prune.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/modules/docker-prune.nix b/nix/modules/docker-prune.nix index 7487f01..ba0abff 100644 --- a/nix/modules/docker-prune.nix +++ b/nix/modules/docker-prune.nix @@ -53,7 +53,7 @@ let }; in { - systemd.services.docker-prune = { + systemd.services.ci-docker-prune = { description = "Surgical disk-pressure-gated Docker prune (dangling+old only; never --all/--volumes; never mid-run)"; after = [ "docker.service" ]; requires = [ "docker.service" ]; @@ -64,7 +64,7 @@ in }; }; - systemd.timers.docker-prune = { + systemd.timers.ci-docker-prune = { description = "Daily timer for the surgical Docker prune"; wantedBy = [ "timers.target" ]; timerConfig = {