summaryrefslogtreecommitdiff
path: root/home-configuration.scm
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-14 11:17:09 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-14 11:17:09 +0100
commitf74e3713b8209a23946978976ec45380779e4f00 (patch)
tree0e00f79400e483a50bde073eafc66daff4a5da58 /home-configuration.scm
parent750069fefc4cfbc43d6fff898e4ebe0b4785a709 (diff)
Home configuration: break out and
Diffstat (limited to 'home-configuration.scm')
-rw-r--r--home-configuration.scm15
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")