aboutsummaryrefslogtreecommitdiff
path: root/home-manager/home-manager
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/home-manager')
-rw-r--r--home-manager/home-manager16
1 files changed, 16 insertions, 0 deletions
diff --git a/home-manager/home-manager b/home-manager/home-manager
index 88c8a32cda7..65c54c63712 100644
--- a/home-manager/home-manager
+++ b/home-manager/home-manager
@@ -129,6 +129,17 @@ function presentNews() {
fi
}
+function doEdit() {
+ if [[ ! -v EDITOR || -z $EDITOR ]]; then
+ errorEcho "Please set the \$EDITOR environment variable"
+ return 1
+ fi
+
+ setConfigFile
+
+ exec "$EDITOR" "$HOME_MANAGER_CONFIG"
+}
+
function doBuild() {
if [[ ! -w . ]]; then
errorEcho "Cannot run build in read-only directory";
@@ -354,6 +365,8 @@ function doHelp() {
echo
echo " help Print this help"
echo
+ echo " edit Open the home configuration in \$EDITOR"
+ echo
echo " build Build configuration into result directory"
echo
echo " switch Build and activate configuration"
@@ -430,6 +443,9 @@ cmd="$1"
shift 1
case "$cmd" in
+ edit)
+ doEdit
+ ;;
build)
doBuild
;;