diff options
-rw-r--r-- | home-configuration.scm | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index f72d63c..ad4419e 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -50,11 +50,22 @@ (string-append reconfigure-system "--allow-downgrades")) +(define and + "&& ") + (define system-update - "pull-guix && reconfigure-system && reconfigure-home") + (string-append pull-guix + and + reconfigure-system + and + reconfigure-home)) (define system-update- - "pull-guix- && reconfigure-system- && reconfigure-home-") + (string-append pull-guix- + and + reconfigure-system- + and + reconfigure-home-)) (define home-aliases `(("grep" . "grep --color=auto") |