summaryrefslogtreecommitdiff
path: root/home-configuration.scm
diff options
context:
space:
mode:
authorMarek Paśnikowski <marekpasnikowski@protonmail.com>2022-11-03 07:10:01 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2022-11-03 07:10:01 +0100
commit41984372a21ebc641dae3bd3967638205362ab9c (patch)
tree1d1217b799efc7def5f6e06586c1dd872977ecce /home-configuration.scm
parent6f69530d7d7c8275bdf5993d46b7e102a6173c4b (diff)
Home configuration: add missing spaces in strings
Diffstat (limited to 'home-configuration.scm')
-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)