fix home manager service error on rebuild

This commit is contained in:
Kopatz
2025-03-04 22:07:12 +01:00
parent 065c64f420
commit da13efe716

View File

@@ -12,7 +12,9 @@
after = [ "writeBoundary" ]; after = [ "writeBoundary" ];
before = [ ]; before = [ ];
data = '' data = ''
install -m 0640 "$(readlink ${configPath})" ${configPath} if [ -e "$(readlink ${configPath})" ]; then
install -m 0640 "$(readlink ${configPath})" ${configPath}
fi
''; '';
}; };
programs.vscode = { programs.vscode = {