From b99e0d9842611a74ae85082fd1b3385631e0ab2b Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Mon, 31 Oct 2022 01:48:57 +0100 Subject: Home configuration: break out and --- home-configuration.scm | 15 +++++++++++++-- 1 file 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") -- cgit v1.2.3