feat(flake): add symlink cleanup

This commit is contained in:
tux
2026-02-12 11:33:23 +05:30
parent bd05b722f5
commit 18eb55eb05

View File

@@ -63,6 +63,11 @@
runHook postInstall
'';
# Remove any broken symlinks
postFixup = ''
find $out -type l ! -exec test -e {} \; -delete 2>/dev/null || true
'';
};
in
pkgs.runCommand "tpanel" {