diff --git a/agent/BACKLOG.md b/agent/BACKLOG.md index fe16160..a4e6529 100644 --- a/agent/BACKLOG.md +++ b/agent/BACKLOG.md @@ -379,12 +379,6 @@ implement. Bernardo moves accepted items into a tier.* when sharing screens. -- **[usefulness] File Manager Archive Backend (`file-roller` or `xarchiver`)**: - Thunar is configured with `thunar-archive-plugin` in the system module, but - the underlying archive extraction GUI backend is missing. Consequently, - right-clicking a `.zip` or `.tar.gz` file and clicking "Extract Here" will - fail silently. Adding an archive manager fulfills a fundamental workstation - requirement and fixes the broken context menu. ## Decisions `[human]` diff --git a/agent/JOURNAL.md b/agent/JOURNAL.md index 4786c7d..9564fdb 100644 --- a/agent/JOURNAL.md +++ b/agent/JOURNAL.md @@ -17,6 +17,13 @@ Template: --- +## 2026-07-08 — File Manager Archive Backend (iteration #78) +- **Task:** PROPOSED item — provide a GUI backend for Thunar's archive extraction plugin. +- **Did:** Added `file-roller` to `environment.systemPackages` in `modules/nixos/file-manager.nix`. +- **Verified:** V1 (flake check). +- **Pending:** nothing. +- **Next suggestion:** continue tackling the PROPOSED backlog queue (e.g. udiskie or xwaylandvideobridge). + ## 2026-07-08 — Hardware security key support (iteration #77) - **Task:** PROPOSED item — enable FIDO2/U2F support for hardware tokens. - **Did:** Added `services.pcscd.enable = true` to `modules/nixos/default.nix` (NixOS >= 26.05 udev handles u2f natively). diff --git a/modules/nixos/file-manager.nix b/modules/nixos/file-manager.nix index adc8c92..6a78d86 100644 --- a/modules/nixos/file-manager.nix +++ b/modules/nixos/file-manager.nix @@ -25,6 +25,7 @@ in services.udisks2.enable = lib.mkDefault true; # mount/unmount removable media environment.systemPackages = with pkgs; [ + file-roller # GUI archive manager (backend for thunar-archive-plugin) ffmpegthumbnailer # video thumbnails (Thunar + yazi) libgsf # ODF thumbnails poppler-utils # PDF thumbnails / pdftoppm (yazi PDF preview too)