From 8c6bc7c82baeec4e417246679a0a05a99a730a0b Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Thu, 27 Apr 2023 13:36:14 +0200 Subject: Make garbage collection the last step of updates --- aisaka.org | 16 ++++++++-------- home-configuration.scm | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/aisaka.org b/aisaka.org index c025baf..c18fe33 100644 --- a/aisaka.org +++ b/aisaka.org @@ -204,22 +204,22 @@ https://guix.gnu.org/en/manual/devel/en/html_node/Home-Configuration.html "&& ") (define system-update - (string-append "sudo guix gc -d 7d " - and - pull-guix + (string-append pull-guix and reconfigure-system and - reconfigure-home)) + reconfigure-home + and + "sudo guix gc -d 7d")) (define system-update- - (string-append "sudo guix gc -d 7d " - and - pull-guix- + (string-append pull-guix- and reconfigure-system- and - reconfigure-home-)) + reconfigure-home- + and + "sudo guix gc -d 7d")) (home-environment (packages diff --git a/home-configuration.scm b/home-configuration.scm index 34c2c55..24c6a81 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -54,22 +54,22 @@ "&& ") (define system-update - (string-append "sudo guix gc -d 7d " - and - pull-guix + (string-append pull-guix and reconfigure-system and - reconfigure-home)) + reconfigure-home + and + "sudo guix gc -d 7d")) (define system-update- - (string-append "sudo guix gc -d 7d " - and - pull-guix- + (string-append pull-guix- and reconfigure-system- and - reconfigure-home-)) + reconfigure-home- + and + "sudo guix gc -d 7d")) (home-environment (packages -- cgit v1.2.3