feat(template): document Nextcloud client opt-in via upstream HM service
All checks were successful
Check / eval (push) Successful in 3m15s
All checks were successful
Check / eval (push) Successful in 3m15s
BACKLOG #102: a commented services.nextcloud-client example in the downstream template (enable + startInBackground) instead of only the bare package line — the upstream Home Manager module installs the app AND ties it to graphical-session.target, so one block covers install, session autostart, and clean removal. No Nomarchy wrapper added. Verified: V1 — pinned HM 26.05 module options confirmed; eval test of the uncommented block through lib.mkFlake shows the user unit (ExecStart nextcloud --background, WantedBy/PartOf graphical-session.target); nix flake check --no-build green (template-sot, downstream-template-home included). Runtime lifecycle is the upstream module's contract. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -86,13 +86,6 @@ untracked canonical state file is still detected.
|
|||||||
|
|
||||||
## NEXT
|
## NEXT
|
||||||
|
|
||||||
### 102. Nextcloud Desktop opt-in through Home Manager
|
|
||||||
|
|
||||||
Expose and document upstream Home Manager `services.nextcloud-client` in the
|
|
||||||
downstream template, including its background-session lifecycle; do not add a
|
|
||||||
duplicate Nomarchy wrapper. Pass = the documented opt-in installs the client,
|
|
||||||
starts it with the graphical session, and disabling it removes that lifecycle.
|
|
||||||
|
|
||||||
### 103. Live ISO baseline desktop applications
|
### 103. Live ISO baseline desktop applications
|
||||||
|
|
||||||
Make Chromium and Firefox, `libreoffice-fresh`, GNOME Text Editor, Amberol, and
|
Make Chromium and Firefox, `libreoffice-fresh`, GNOME Text Editor, Amberol, and
|
||||||
|
|||||||
@@ -19,6 +19,21 @@ Template:
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 2026-07-13 — #102 Nextcloud Desktop opt-in in the template (this commit)
|
||||||
|
- **Task:** BACKLOG #102 — document upstream HM `services.nextcloud-client`
|
||||||
|
as a downstream-template opt-in; no Nomarchy wrapper.
|
||||||
|
- **Did:** Commented `services.nextcloud-client` block in
|
||||||
|
`templates/downstream/home.nix` (enable + startInBackground), and pointed
|
||||||
|
the bare `# nextcloud-client` package line at it (service = app + session
|
||||||
|
lifecycle; re-comment removes both).
|
||||||
|
- **Verified:** V1 — pinned HM 26.05 module confirmed
|
||||||
|
(enable/package/startInBackground); eval test on an uncommented template
|
||||||
|
copy via `lib.mkFlake`: unit ExecStart `nextcloud --background`,
|
||||||
|
WantedBy/PartOf `graphical-session.target`. `nix flake check --no-build`
|
||||||
|
green (includes template-sot + downstream-template-home).
|
||||||
|
- **Pending:** nothing — runtime lifecycle is the upstream module's contract.
|
||||||
|
- **Next suggestion:** #93/#99/#107 land next (shared live-VM evidence run).
|
||||||
|
|
||||||
## 2026-07-13 — User-promoted NEXT queue curation (#102–#112; this commit)
|
## 2026-07-13 — User-promoted NEXT queue curation (#102–#112; this commit)
|
||||||
- **Task:** Audit Bernardo's live-ISO, application, menu, and device follow-ups
|
- **Task:** Audit Bernardo's live-ISO, application, menu, and device follow-ups
|
||||||
against shipped behavior and curate the executable queue.
|
against shipped behavior and curate the executable queue.
|
||||||
|
|||||||
@@ -811,8 +811,9 @@ Design/decision records and a running log of shipped work (items marked
|
|||||||
Avahi mDNS), `openrgb` (RGB lighting daemon), and `restic` (scheduled
|
Avahi mDNS), `openrgb` (RGB lighting daemon), and `restic` (scheduled
|
||||||
daily backup — a small option surface: `repository`/`passwordFile`/`paths`,
|
daily backup — a small option surface: `repository`/`passwordFile`/`paths`,
|
||||||
7/4/6 retention). More candidates by area:
|
7/4/6 retention). More candidates by area:
|
||||||
- ✓ **cloud/sync:** Syncthing (`services.syncthing`); Nextcloud client is a
|
- ✓ **cloud/sync:** Syncthing (`services.syncthing`); Nextcloud client is
|
||||||
bare tray app (in the app-suite menu, not a service)
|
an upstream-HM opt-in (`services.nextcloud-client`, commented in the
|
||||||
|
template — installs the app + starts it with the session; #102)
|
||||||
- ✓ **local AI:** Ollama (`nomarchy.services.ollama`, optional GPU accel)
|
- ✓ **local AI:** Ollama (`nomarchy.services.ollama`, optional GPU accel)
|
||||||
ships; LM Studio is a (commented) app-suite package (a bare GUI, no
|
ships; LM Studio is a (commented) app-suite package (a bare GUI, no
|
||||||
service) — pairs with the menu's Ask-Claude philosophy
|
service) — pairs with the menu's Ask-Claude philosophy
|
||||||
|
|||||||
@@ -76,6 +76,12 @@
|
|||||||
# nomarchy.keyboard.layouts = [ "de" "fr" ]; # optional: put these first in the
|
# nomarchy.keyboard.layouts = [ "de" "fr" ]; # optional: put these first in the
|
||||||
# # new-keyboard picker (all installed XKB
|
# # new-keyboard picker (all installed XKB
|
||||||
# # layouts are searchable without this)
|
# # layouts are searchable without this)
|
||||||
|
#
|
||||||
|
# services.nextcloud-client = { # Nextcloud sync client (upstream Home Manager
|
||||||
|
# enable = true; # module — installs the client and starts it
|
||||||
|
# startInBackground = true; # with the graphical session; tray icon only,
|
||||||
|
# }; # no window). Re-comment to remove the app
|
||||||
|
# # AND its background service.
|
||||||
|
|
||||||
# ── Application suite ───────────────────────────────────────────────
|
# ── Application suite ───────────────────────────────────────────────
|
||||||
# A starter complete-workstation set, installed for your user — yours to
|
# A starter complete-workstation set, installed for your user — yours to
|
||||||
@@ -170,7 +176,8 @@
|
|||||||
# mangohud # in-game overlay
|
# mangohud # in-game overlay
|
||||||
|
|
||||||
# Files, sync & torrents
|
# Files, sync & torrents
|
||||||
# nextcloud-client
|
# nextcloud-client # bare app — services.nextcloud-client above
|
||||||
|
# # also autostarts it with the session
|
||||||
# localsend # AirDrop-like transfer
|
# localsend # AirDrop-like transfer
|
||||||
# qbittorrent
|
# qbittorrent
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user