Compare commits

...

2 Commits

Author SHA1 Message Date
tux
69b93ca32f feat: increase workspace 2026-02-12 11:40:48 +05:30
tux
18eb55eb05 feat(flake): add symlink cleanup 2026-02-12 11:33:32 +05:30
2 changed files with 6 additions and 1 deletions

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" {

View File

@@ -33,7 +33,7 @@ const Workspace = ({ ws }: WsButtonProps) => {
};
export const WorkspaceButton = () => {
const range = Array.from({ length: 4 + 1 }, (_, i) => i);
const range = Array.from({ length: 5 + 1 }, (_, i) => i);
return (
<box cssClasses={["workspace-container"]} spacing={4}>
{range.map((i) => (