Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 0 additions & 31 deletions .github/workflows/flake-check.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/lint-commits.yml

This file was deleted.

9 changes: 7 additions & 2 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,19 @@
- VMs: [hostname]-vm (fern-vm, oak-vm, cedar-vm)

- [x] hydenix: some yubikey touch detection for hyprlock and waybar <https://github.com/maximbaz/yubikey-touch-detector>
- [?] bluemail
- [x] bluemail
- [x] scalar
- [x] rust
- [x] ClamAV UI
- [ ] Navi default nix template
- [x] find replacement for diskonaut
- [?] Flutter
- [x] Flutter
- [x] create own module for act-github
- [ ] Update flake
- [ ] Test workflows
- [x] Prisma module
- [x] Matrix Server
- [x] Deskflow
- [x] ping module
- [x] db module
- [x] nginx module
Comment on lines +23 to +27
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Verify new completed tasks correspond to actual implementations.

The newly marked completed tasks should have corresponding implementations in the codebase:

  • Matrix Server: Should correspond to modules/system/common/server/communication/matrix.nix
  • Deskflow: Should correspond to modules/system/common/server/communication/deskflow.nix
  • nginx, db, ping modules: Should have corresponding module files

🏁 Script executed:

#!/bin/bash
# Description: Verify that the completed TODO items have corresponding module implementations

echo "=== Checking for Matrix Server module ==="
fd -t f "matrix.nix" modules/

echo "=== Checking for Deskflow module ==="
fd -t f "deskflow.nix" modules/

echo "=== Checking for nginx module references ==="
rg -n "nginx" modules/ | head -10

echo "=== Checking for database/db module ==="
fd -t f -e nix modules/ | xargs rg -l "database|db" | head -5

echo "=== Checking for ping module ==="
fd -t f "ping.nix" modules/ || rg -n "ping" modules/ | head -5

Length of output: 1278


Implement missing ping, db, and nginx modules
No modules/**/ping.nix, db.nix, or nginx.nix files were found under modules/; please add the corresponding module implementations or update the TODO entries accordingly.

🤖 Prompt for AI Agents
In TODO.md around lines 23 to 27, the checklist marks "ping module", "db
module", and "nginx module" as done but there are no corresponding files under
modules/ (e.g., modules/**/ping.nix, db.nix, nginx.nix); either add the missing
module implementations with appropriate exports and configuration (create
modules/<service>/ping.nix, modules/db.nix, modules/nginx.nix following existing
module patterns) or update the TODO to uncheck or remove those entries and
include a short note about where/when they will be added.

Loading