summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-14 11:17:10 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-14 11:17:10 +0100
commit673eab8e00e5852eae337094c3b024613360dc99 (patch)
tree24de091d7d66b2b8e14f5e8a6abdc18536eedad0
parent3ebc44a4b38abd641a2a26d5c03e3d7fa5b454d5 (diff)
Home configuration: add missing spaces in strings
-rw-r--r--home-configuration.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/home-configuration.scm b/home-configuration.scm
index 861c078..b8d817e 100644
--- a/home-configuration.scm
+++ b/home-configuration.scm
@@ -49,7 +49,7 @@
("GUILE_AUTO_COMPILE" . "0")))
(define allow-downgrades
- "--allow-downgrades")
+ "--allow-downgrades ")
(define pull-guix
"guix pull ")
@@ -57,13 +57,13 @@
(define pull-guix-
(string-append pull-guix
allow-downgrades
- "--disable-authentication"))
+ "--disable-authentication "))
(define guix-home
"guix home reconfigure ")
(define home-configuration
- "home-configuration.scm")
+ "home-configuration.scm ")
(define reconfigure-home
(string-append guix-home
@@ -78,7 +78,7 @@
"sudo guix system reconfigure ")
(define system-configuration
- "system-configuration.scm")
+ "system-configuration.scm ")
(define reconfigure-system
(string-append guix-system
@@ -107,9 +107,9 @@
reconfigure-home-))
(define home-aliases
- `(("grep" . "grep --color=auto")
- ("ll" . "ls -l")
- ("ls" . "ls -p --color=auto")
+ `(("grep" . "grep --color=auto ")
+ ("ll" . "ls -l ")
+ ("ls" . "ls -p --color=auto ")
("pull-guix" . ,pull-guix)
("pull-guix-" . ,pull-guix-)
("reconfigure-home" . ,reconfigure-home)