modules/home-manager: fix syntax error
Fixes the error error: syntax error, unexpected $undefined, expecting IND_STR or DOLLAR_CURLY or IND_STRING_CLOSE, at .../home-manager/modules/programs/home-manager.nix:70:47
This commit is contained in:
parent
f55fbe037a
commit
268d027770
|
@ -67,7 +67,7 @@ in
|
|||
# Without this a file collision error will be printed.
|
||||
home.activation.uninstallHomeManager =
|
||||
dagEntryBetween [ "installPackages" ] [ "writeBoundary" ] ''
|
||||
if nix-env -q | grep -q '^home-manager$' ; then
|
||||
if nix-env -q | grep -q "^home-manager$" ; then
|
||||
$DRY_RUN_CMD nix-env -e home-manager
|
||||
|
||||
echo "You can now remove the 'home-manager' packageOverride"
|
||||
|
|
Loading…
Reference in a new issue