diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-11-03 07:10:01 +0100 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-11-03 07:10:01 +0100 |
commit | 85d5aad7b41ab6fe2c6f80c954a0bdf396d5371c (patch) | |
tree | 24de091d7d66b2b8e14f5e8a6abdc18536eedad0 /home-configuration.scm | |
parent | bd132d25223ec76cf577c5b593321e2ec24aee5c (diff) |
Home configuration: add missing spaces in strings
Diffstat (limited to 'home-configuration.scm')
-rw-r--r-- | home-configuration.scm | 14 |
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) |