mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 05:29:46 +01:00
taskwarrior: minor script cleanup
This commit is contained in:
parent
8a046f36eb
commit
47b3719f51
1 changed files with 3 additions and 7 deletions
|
@ -112,13 +112,9 @@ in {
|
||||||
else
|
else
|
||||||
echo "include ${homeConf}" > "${userConf}"
|
echo "include ${homeConf}" > "${userConf}"
|
||||||
fi
|
fi
|
||||||
elif ! ${pkgs.gnugrep}/bin/grep -qF "include ${homeConf}" ${
|
elif ! grep -qF "include ${homeConf}" ${escapeShellArg userConf}; then
|
||||||
escapeShellArg userConf
|
# Add include statement for Home Manager generated config.
|
||||||
}; then
|
$DRY_RUN_CMD sed -i '1i include ${homeConf}' ${escapeShellArg userConf}
|
||||||
# Add include statement for home-manager generated config
|
|
||||||
$DRY_RUN_CMD ${pkgs.gnused}/bin/sed -i '1i include ${homeConf}' ${
|
|
||||||
escapeShellArg userConf
|
|
||||||
}
|
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue