1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-18 12:38:30 +02:00

home-manager: add edit command

With this change, running

    home-manager edit

opens `$HOME_MANAGER_CONFIG` in `$EDITOR`.

This is mainly for convenience. Users should not have to remember the
exact location of the Home Manager configuration.
This commit is contained in:
zimbatm 2018-12-03 11:19:22 +01:00 committed by Robert Helgesson
parent 797fbbf826
commit 571e17410a
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -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
;;