diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 01:55:00 +0100 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 01:55:00 +0100 |
commit | 6f819cb23a5c6b68dce50745268ecc7d6f6b8b65 (patch) | |
tree | 58917ea91a3a7b004cd53851a5c4b1fb3413c5b1 | |
parent | b99e0d9842611a74ae85082fd1b3385631e0ab2b (diff) |
Home configuration: break out allow-downgrades
-rw-r--r-- | home-configuration.scm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index ad4419e..f84c0da 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -14,11 +14,16 @@ ("NVM_DIR" . "$HOME/src/nvm") ("GUILE_AUTO_COMPILE" . "0"))) +(define allow-downgrades + "--allow-downgrades") + (define pull-guix "guix pull ") (define pull-guix- - "pull-guix --allow-downgrades --disable-authentication") + (string-append pull-guix + allow-downgrades + "--disable-authentication")) (define guix-home "guix home reconfigure ") @@ -33,7 +38,7 @@ (define reconfigure-home- (string-append reconfigure-home - "--allow-downgrades")) + allow-downgrades)) (define guix-system "sudo guix system reconfigure ") @@ -48,7 +53,7 @@ (define reconfigure-system- (string-append reconfigure-system - "--allow-downgrades")) + allow-downgrades)) (define and "&& ") |