summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marekpasnikowski@protonmail.com>2022-10-31 00:37:07 +0100
committerMarek Paśnikowski <marekpasnikowski@protonmail.com>2022-10-31 00:37:07 +0100
commit4035cfd92d81e06989ae24e29b3ea2d67e252a95 (patch)
tree696ea50434645bad897f47a499e8800956282a9d
parent85fe1af5df8e8531935529be80b8bea5f182389e (diff)
Home configuration: break out home-aliases
-rw-r--r--home-configuration.scm33
1 files changed, 18 insertions, 15 deletions
diff --git a/home-configuration.scm b/home-configuration.scm
index e225996..5cd11bd 100644
--- a/home-configuration.scm
+++ b/home-configuration.scm
@@ -14,23 +14,26 @@
("NVM_DIR" . "$HOME/src/nvm")
("GUILE_AUTO_COMPILE" . "0")))
+(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")
+ ("reconfigure-home" . (string-append "guix home reconfigure "
+ ,config-prefix
+ "home-configuration.scm"))
+ ("reconfigure-home-" . "reconfigure-home --allow-downgrades")
+ ("reconfigure-system" . (string-append "sudo guix system reconfigure "
+ ,config-prefix
+ "system-configuration.scm"))
+ ("reconfigure-system-" . "reconfigure-system --allow-downgrades")
+ ("system-update" . "pull-guix && reconfigure-system && reconfigure-home")
+ ("system-update-" . "pull-guix- && reconfigure-system- && reconfigure-home-")))
+
(define bash-configuration
(home-bash-configuration (environment-variables home-env-vars)
- (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")
- ("reconfigure-home" . (string-append "guix home reconfigure "
- ,config-prefix
- "home-configuration.scm"))
- ("reconfigure-home-" . "reconfigure-home --allow-downgrades")
- ("reconfigure-system" . (string-append "sudo guix system reconfigure "
- ,config-prefix
- "system-configuration.scm"))
- ("reconfigure-system-" . "reconfigure-system --allow-downgrades")
- ("system-update" . "pull-guix && reconfigure-system && reconfigure-home")
- ("system-update-" . "pull-guix- && reconfigure-system- && reconfigure-home-")))
+ (aliases home-aliases)
(bash-profile `(,(local-file (string-append config-prefix
".bash_profile")
"bash_profile")))