diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 01:48:57 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2022-10-31 01:48:57 +0100 |
commit | 354bc53bcc963d0d2d868f9f1699c81ab0859e68 (patch) | |
tree | bb8fbcc04cd2cd73366749443e17da67760ea1d6 /home-configuration.scm | |
parent | df39174a2d26526a2c72c80a0f42b65e32f5bb09 (diff) |
Home configuration: break out and
Diffstat (limited to 'home-configuration.scm')
-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") |