summaryrefslogtreecommitdiff
path: root/home-configuration.scm
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-14 11:17:09 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-14 11:17:09 +0100
commite905072624c92e9c33d96210dbbb8e1c61f265b4 (patch)
treeaaded602c9581f0ee3aa95550253f2315fe8e09e /home-configuration.scm
parentf8aa7d1bee708059cffba7ffe5f71adff2e0943b (diff)
Home configuration: break out pull-guix and pull-guix-
Diffstat (limited to 'home-configuration.scm')
-rw-r--r--home-configuration.scm10
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"))