diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 01:14:23 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2022-10-31 01:14:23 +0100 |
commit | b6763a714655d4d1f814b413158366e44a629260 (patch) | |
tree | f5abca71f361330692da5e64ff751595d2617a6a /home-configuration.scm | |
parent | 829033294c5237b62afc52bdb26f433eb9fc2de5 (diff) |
Home configuration: break out pull-guix and pull-guix-
Diffstat (limited to 'home-configuration.scm')
-rw-r--r-- | home-configuration.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index 3bd9d1f..ea2b232 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -14,12 +14,18 @@ ("NVM_DIR" . "$HOME/src/nvm") ("GUILE_AUTO_COMPILE" . "0"))) +(define pull-guix + "guix pull ") + +(define pull-guix- + "pull-guix --allow-downgrades --disable-authentication") + (define home-aliases `(("grep" . "grep --color=auto") ("ll" . "ls -l") ("ls" . "ls -p --color=auto") - ("pull-guix" . "guix pull") - ("pull-guix-" . "pull-guix --allow-downgrades --disable-authentication") + ("pull-guix" . ,pull-guix) + ("pull-guix-" . ,pull-guix-) ("reconfigure-home" . (string-append "guix home reconfigure " ,config-prefix "home-configuration.scm")) |