diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2023-04-27 13:36:14 +0200 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2023-04-27 13:36:14 +0200 |
commit | 8c6bc7c82baeec4e417246679a0a05a99a730a0b (patch) | |
tree | aa02af4deefbd4aeec109c3b5a9b717f1a2910d2 /home-configuration.scm | |
parent | 6c14f7e0956a54504add2e7b91ad599ca21e1790 (diff) |
Make garbage collection the last step of updates
Diffstat (limited to 'home-configuration.scm')
-rw-r--r-- | home-configuration.scm | 16 |
1 files changed, 8 insertions, 8 deletions
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 |