From b30ce989dbc0261cc28601ae1ad19ef22babaf72 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Fri, 28 Mar 2025 14:24:14 +0100 Subject: [PATCH] feat: gc root operating system non grafted os without new store connections Multiple store connections are bad, especially if they are unnecessary, which is like always. I just didn't know how to make it without them, now I do. So this commit does that. But still, the non-grafting is behaving strangely, the derivations aren't the same as with --no-grafts. --- config.scm | 49 ++++++++++++++++++++++++++++++++++++------------- 1 file changed, 36 insertions(+), 13 deletions(-) diff --git a/config.scm b/config.scm index ead8e5a..a72f0eb 100644 --- a/config.scm +++ b/config.scm @@ -237,6 +237,40 @@ ;; Allow resolution of '.local' host names with mDNS. (name-service-switch %mdns-host-lookup-nss))) +(define (derivation->drv-name drv) + (mlet* %store-monad + ((drv drv)) + (return (derivation-file-name drv)))) + +(use-modules (srfi srfi-9) + (ice-9 match) + (guix records)) + +(define-record-type + (non-grafted derivation) + non-grafted? + (derivation non-grafted-derivation)) + +(define-gexp-compiler (non-grafted-compiler (non-grafted ) system target) + (without-grafting (non-grafted-derivation non-grafted))) + +(define-record-type* + drv-name-record drv-name + drv-name? + (derivation drv-name-derivation) + (override-grafts? drv-name-override-grafts? + (default #f))) + +(define-gexp-compiler (drv-name-compiler (drv-name ) system target) + (let ((drv-name-store (derivation->drv-name (drv-name-derivation drv-name)))) + (if (drv-name-override-grafts? drv-name) + (without-grafting drv-name-store) + drv-name-store))) + +(define (@@ (gnu system) )) +(define-gexp-compiler (os-compiler (os ) system target) + (operating-system-derivation os)) + ;; Takes an operating system and gc roots its derivation (define (operating-system-with-build-inputs os) (operating-system @@ -247,19 +281,8 @@ (simple-service 'gc-root-system-derivation gc-root-service-type (list - (derivation-file-name - (with-store %store - (run-with-store %store - (operating-system-derivation os)))) - (with-store %store - (run-with-store %store - (without-grafting - (operating-system-derivation os)))) - (derivation-file-name - (with-store %store - (run-with-store %store - (without-grafting - (operating-system-derivation os))))))) + (drv-name (operating-system-derivation os) #t) + (non-grafted (operating-system-derivation os)))) (operating-system-user-services os))))) (operating-system-with-build-inputs %ruther/base-laptop-os) -- 2.48.1