Compare commits

...

17 Commits

Author SHA1 Message Date
hermione
1172818062 feat(emacs): add org-caldav integration for Nextcloud calendar sync
Some checks failed
CI / check (push) Failing after 1m59s
- Enable org-caldav package in packages.el
- Configure base org-caldav settings (URL, timezone, sync behavior)
- Add Personal calendar two-way sync (~/org/personal-calendar.org)
- Add Tasks calendar one-way sync from todo.org
- Add keybinding SPC o C for manual sync
- Document setup requirements in config comments

Note: Conflict resolution is 'Org always wins' (org-caldav limitation).
User needs to create Nextcloud app password and ~/.authinfo.gpg.

Refs: x-5tb, x-5tb.1, x-5tb.2, x-5tb.3
2026-01-24 17:18:45 -08:00
mayor
9f63e1430c fix(beads): set issue prefix to x-
Some checks failed
CI / check (push) Failing after 2m5s
Ensures beads created in this repo use x- prefix to match routes.jsonl
2026-01-24 16:37:04 -08:00
b14ef1f62a update gastown
Some checks failed
CI / check (push) Failing after 4m2s
2026-01-23 17:10:29 -08:00
87719fa9e6 update gastown
Some checks failed
CI / check (push) Has been cancelled
2026-01-23 17:10:06 -08:00
933612da4c update beads and gastown 2026-01-23 17:10:06 -08:00
shiny
d2c7599267 fix(beads): set routing mode to explicit instead of auto
Some checks failed
CI / check (push) Failing after 2m34s
The routing.mode was defaulting to 'auto', which uses git remote URL
to detect user role. Non-SSH URLs can cause mail and issues to be
routed to ~/.beads-planning instead of the local .beads directory.

Setting routing.mode to 'explicit' disables auto-routing entirely,
keeping all issues in the expected local directory.

Fixes: x-kho

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 18:15:21 -08:00
chrome
3d16824eac chore: add Gas Town directories to .gitignore
Some checks failed
CI / check (push) Has been cancelled
Added by gt polecat setup.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 17:56:37 -08:00
2cdc15163c fix(flake): apply claude-code overlay to all platforms
Some checks failed
CI / check (push) Failing after 2m17s
The custom claude-code overlay (for GCS-based builds) was only being
applied to darwinModules. Extract to shared customUnstableOverlays and
apply to nixosModules and nixosModulesUnstable as well.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 17:35:14 -08:00
a77b1230fe update beads
Some checks failed
CI / check (push) Failing after 4m50s
2026-01-21 15:15:39 -08:00
623a387127 flake: update gastown to a069ff34 (rebased on upstream)
Some checks failed
CI / check (push) Failing after 4m9s
Rebased local patches onto 45 new upstream commits.

Executed-By: mayor
Role: mayor
2026-01-20 22:19:45 -08:00
737f2b09e4 chore(flake): update gastown to gitea fork with timeout fix
Some checks failed
CI / check (push) Failing after 4m16s
Point gastown input to local Gitea fork which includes:
- Increased ClaudeStartTimeout from 60s to 120s
- Fixes intermittent refinery/polecat startup timeouts

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 10:34:01 -08:00
cddc9de14a chore(deps): lock file maintenance
All checks were successful
CI / check (push) Successful in 6m18s
2026-01-19 20:15:34 -08:00
53e3bbe78f fix(claude-code): preserve bun appended bundle during NixOS build
All checks were successful
CI / check (push) Successful in 3m32s
Bun standalone executables store their JavaScript code by appending it
after the ELF sections, marked with "---- Bun! ----". The standard Nix
build process was corrupting this:

- autoPatchelfHook rewrites the entire ELF, losing appended data
- strip removes data after ELF sections
- patchelf shrink-rpath also rewrites the ELF

Fix by:
- Using dontStrip and dontPatchELF to skip automatic fixup
- Manually running patchelf --set-interpreter which modifies in-place
  without rewriting the entire file structure

This restores the binary from 99MB (bare bun runtime) to 220MB (full
claude-code application).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

Executed-By: mayor
Role: mayor
2026-01-19 10:39:58 -08:00
c258eafe34 fix: apply claude-code overlay to NixOS modules
All checks were successful
CI / check (push) Successful in 4m11s
The custom claude-code package (from GCS) was only being applied to
darwinModules, causing NixOS systems to use the older version from
nixpkgs-unstable instead of the updated version from packages/claude-code.

Extract claudeCodeOverlay as a shared definition and apply it to all
module sets: nixosModules, nixosModulesUnstable, and darwinModules.

Executed-By: mayor
Role: mayor
2026-01-19 10:28:11 -08:00
03d0b76f97 feat: switch gastown input to local Gitea fork
All checks were successful
CI / check (push) Successful in 5m9s
Fork includes mayor startup protocol fix for escalation checking.
2026-01-19 08:58:23 -08:00
b5f7233214 ci: Use semver tag for gitea-actions/nix-setup
All checks were successful
CI / check (push) Successful in 3m21s
Switch from @main to @v1 for stability. Major version tag auto-updates
to latest v1.x.x while avoiding breaking changes.

Closes: nix-7zf
2026-01-18 17:54:24 -08:00
1203662237 feat(home/development): add sqlite3 package
Some checks failed
CI / check (push) Has been cancelled
2026-01-18 08:13:16 -08:00
9 changed files with 117 additions and 48 deletions

View File

@@ -6,7 +6,7 @@
# Issue prefix for this repository (used by bd init) # Issue prefix for this repository (used by bd init)
# If not set, bd init will auto-detect from directory name # If not set, bd init will auto-detect from directory name
# Example: issue-prefix: "myproject" creates issues like "myproject-1", "myproject-2", etc. # Example: issue-prefix: "myproject" creates issues like "myproject-1", "myproject-2", etc.
# issue-prefix: "" issue-prefix: "x"
# Use no-db mode: load from JSONL, no SQLite, write back after each command # Use no-db mode: load from JSONL, no SQLite, write back after each command
# When true, bd will use .beads/issues.jsonl as the source of truth # When true, bd will use .beads/issues.jsonl as the source of truth
@@ -60,3 +60,5 @@ sync-branch: "beads-sync"
# - linear.api-key # - linear.api-key
# - github.org # - github.org
# - github.repo # - github.repo
routing.mode: "explicit"

View File

@@ -12,7 +12,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- uses: https://git.johnogle.info/johno/gitea-actions/nix-setup@main - uses: https://git.johnogle.info/johno/gitea-actions/nix-setup@v1
- name: Check flake - name: Check flake
run: nix flake check run: nix flake check

5
.gitignore vendored
View File

@@ -1,3 +1,8 @@
result result
thoughts thoughts
.beads .beads
# Gas Town (added by gt)
.runtime/
.claude/
.logs/

36
flake.lock generated
View File

@@ -8,17 +8,17 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1768509852, "lastModified": 1769204611,
"narHash": "sha256-4oZXrqBjK9V8qKHoxlfil20qcJdOU8HXJA4627nX1nQ=", "narHash": "sha256-OcrHcO/TD4x5T7n1N1q8LgxA5Wb2cOaSsbj7HFzn6RA=",
"owner": "steveyegge", "ref": "refs/heads/main",
"repo": "beads", "rev": "a45b441bc57e65380e44cab1f4a43f8033aa26dd",
"rev": "d3db8253ff09e0f139ffbb6f839afe13acbf7bdb", "revCount": 5462,
"type": "github" "type": "git",
"url": "ssh://git@git.johnogle.info:2222/johno/beads.git"
}, },
"original": { "original": {
"owner": "steveyegge", "type": "git",
"repo": "beads", "url": "ssh://git@git.johnogle.info:2222/johno/beads.git"
"type": "github"
} }
}, },
"doomemacs": { "doomemacs": {
@@ -81,17 +81,17 @@
"gastown": { "gastown": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1768682809, "lastModified": 1769213751,
"narHash": "sha256-PCP5PQasLqL5/OVNw6LsjiFfIU4RNniicTUcVq2ggHg=", "narHash": "sha256-45+0Q7cSCKuBamVuJUr2zsDr8ae79I1WDjAHCA/YYt0=",
"owner": "steveyegge", "ref": "refs/heads/main",
"repo": "gastown", "rev": "089cf64c0b55fb6750311068b2765e24a5df0d1d",
"rev": "9cd2696abe68ac0defc612ace5028d327d4f207d", "revCount": 3022,
"type": "github" "type": "git",
"url": "ssh://git@git.johnogle.info:2222/johno/gastown.git"
}, },
"original": { "original": {
"owner": "steveyegge", "type": "git",
"repo": "gastown", "url": "ssh://git@git.johnogle.info:2222/johno/gastown.git"
"type": "github"
} }
}, },
"google-cookie-retrieval": { "google-cookie-retrieval": {

View File

@@ -43,12 +43,12 @@
}; };
beads = { beads = {
url = "github:steveyegge/beads"; url = "git+ssh://git@git.johnogle.info:2222/johno/beads.git";
inputs.nixpkgs.follows = "nixpkgs-unstable"; inputs.nixpkgs.follows = "nixpkgs-unstable";
}; };
gastown = { gastown = {
url = "github:steveyegge/gastown"; url = "git+ssh://git@git.johnogle.info:2222/johno/gastown.git";
flake = false; # No flake.nix upstream yet flake = false; # No flake.nix upstream yet
}; };
@@ -89,11 +89,20 @@
}; };
# Shared unstable overlays for custom package builds
customUnstableOverlays = [
# Override claude-code in unstable to use our custom GCS-based build
# (needed for corporate networks that block npm registry)
(ufinal: uprev: {
claude-code = uprev.callPackage ./packages/claude-code {};
})
];
nixosModules = [ nixosModules = [
./roles ./roles
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
{ {
nixpkgs.overlays = [ (mkBaseOverlay {}) ]; nixpkgs.overlays = [ (mkBaseOverlay { unstableOverlays = customUnstableOverlays; }) ];
} }
(mkHomeManagerConfig { (mkHomeManagerConfig {
sharedModules = [ inputs.plasma-manager.homeModules.plasma-manager ]; sharedModules = [ inputs.plasma-manager.homeModules.plasma-manager ];
@@ -106,7 +115,7 @@
inputs.home-manager-unstable.nixosModules.home-manager inputs.home-manager-unstable.nixosModules.home-manager
inputs.jovian.nixosModules.jovian inputs.jovian.nixosModules.jovian
{ {
nixpkgs.overlays = [ (mkBaseOverlay {}) ]; nixpkgs.overlays = [ (mkBaseOverlay { unstableOverlays = customUnstableOverlays; }) ];
} }
(mkHomeManagerConfig { (mkHomeManagerConfig {
sharedModules = [ inputs.plasma-manager-unstable.homeModules.plasma-manager ]; sharedModules = [ inputs.plasma-manager-unstable.homeModules.plasma-manager ];
@@ -117,17 +126,7 @@
./roles/darwin.nix ./roles/darwin.nix
inputs.home-manager.darwinModules.home-manager inputs.home-manager.darwinModules.home-manager
{ {
nixpkgs.overlays = [ nixpkgs.overlays = [ (mkBaseOverlay { unstableOverlays = customUnstableOverlays; }) ];
(mkBaseOverlay {
# Override claude-code in unstable to use our custom GCS-based build
# (needed for corporate networks that block npm registry)
unstableOverlays = [
(ufinal: uprev: {
claude-code = uprev.callPackage ./packages/claude-code {};
})
];
})
];
} }
(mkHomeManagerConfig { sharedModules = []; }) (mkHomeManagerConfig { sharedModules = []; })
]; ];

View File

@@ -65,6 +65,7 @@ in
pkgs.unstable.claude-code pkgs.unstable.claude-code
pkgs.unstable.claude-code-router pkgs.unstable.claude-code-router
pkgs.unstable.codex pkgs.unstable.codex
pkgs.sqlite
# Custom packages # Custom packages
pkgs.custom.tea-rbw pkgs.custom.tea-rbw

View File

@@ -83,15 +83,62 @@
"d" #'org-agenda-day-view "d" #'org-agenda-day-view
"w" #'org-agenda-week-view)) "w" #'org-agenda-week-view))
;; (use-package! org-caldav ;; org-caldav: Sync Org entries with Nextcloud CalDAV
;; :defer t ;; Setup requirements:
;; :config ;; 1. Create Nextcloud app password: Settings -> Security -> Devices & sessions
;; (setq org-caldav-url "https://nextcloud.johnogle.info/remote.php/dav/calendars/johno" ;; 2. Store in rbw: rbw add nextcloud-caldav (username in notes, app password as secret)
;; org-caldav-calendar-id "personal" ;; 3. Run: doom sync
;; org-icalendar-timezone "America/Los_Angeles" ;; 4. Test: M-x org-caldav-sync
;; org-caldav-inbox "~/org/calendar.org" ;;
;; org-caldav-files nil ;; Note: Conflict resolution is "Org always wins" - treat Org as source of truth
;; org-caldav-sync-direction 'cal->org)) ;; for entries that originated in Org.
(use-package! org-caldav
:after org
:commands (org-caldav-sync)
:init
(map! :leader
:desc "Sync calendar" "o C" #'org-caldav-sync)
:config
;; Nextcloud CalDAV base URL
(setq org-caldav-url "https://nextcloud.johnogle.info/remote.php/dav/calendars/johno")
;; Timezone for iCalendar export
(setq org-icalendar-timezone "America/Los_Angeles")
;; Sync state storage (in org directory for multi-machine sync)
(setq org-caldav-save-directory (expand-file-name ".org-caldav/" org-directory))
;; Backup file for entries before modification
(setq org-caldav-backup-file (expand-file-name ".org-caldav/backup.org" org-directory))
;; Sync behavior: bidirectional by default
(setq org-caldav-sync-direction 'twoway)
;; What changes from calendar sync back to Org (conservative: title and timestamp only)
(setq org-caldav-sync-changes-to-org 'title-and-timestamp)
;; Deletion handling: ask before deleting
(setq org-caldav-delete-calendar-entries 'ask)
(setq org-caldav-delete-org-entries 'ask)
;; Enable TODO/VTODO sync
(setq org-icalendar-include-todo 'all)
(setq org-caldav-sync-todo t)
;; Calendar-specific configuration
(setq org-caldav-calendars
'(;; Personal calendar: two-way sync with family-shared Nextcloud calendar
(:calendar-id "personal"
:inbox "~/org/personal-calendar.org"
:files ("~/org/personal-calendar.org"))
;; Tasks calendar: one-way sync (org → calendar only)
;; SCHEDULED/DEADLINE items from todo.org push to private Tasks calendar.
;; No inbox = no download from calendar (effectively one-way).
;; Note: Create 'tasks' calendar in Nextcloud first, keep it private.
(:calendar-id "tasks"
:files ("~/org/todo.org"))))
)
(defun my/get-rbw-password (alias) (defun my/get-rbw-password (alias)
"Return the password for ALIAS via rbw, unlocking the vault only if needed." "Return the password for ALIAS via rbw, unlocking the vault only if needed."

View File

@@ -49,7 +49,7 @@
;; ...Or *all* packages (NOT RECOMMENDED; will likely break things) ;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
;; (unpin! t) ;; (unpin! t)
;; (package! org-caldav) (package! org-caldav)
;; Note: Packages with custom recipes must be pinned for nix-doom-emacs-unstraightened ;; Note: Packages with custom recipes must be pinned for nix-doom-emacs-unstraightened
;; to build deterministically. Update pins when upgrading packages. ;; to build deterministically. Update pins when upgrading packages.

View File

@@ -1,7 +1,8 @@
{ lib { lib
, stdenv , stdenv
, fetchurl , fetchurl
, autoPatchelfHook , patchelf
, glibc
}: }:
let let
@@ -38,8 +39,14 @@ in stdenv.mkDerivation {
dontUnpack = true; dontUnpack = true;
dontBuild = true; dontBuild = true;
# Bun standalone binaries have JS code appended after the ELF sections
# stripping/patching would remove or corrupt this appended data
dontStrip = true;
dontPatchELF = true;
nativeBuildInputs = lib.optionals stdenv.isLinux [ autoPatchelfHook ]; # Don't use autoPatchelfHook - it rewrites the ELF and strips the appended
# bun bundle (the JS code is appended after the ELF sections)
nativeBuildInputs = lib.optionals stdenv.isLinux [ patchelf ];
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall
@@ -49,6 +56,14 @@ in stdenv.mkDerivation {
runHook postInstall runHook postInstall
''; '';
# Manually patch the interpreter for bun standalone binaries
# patchelf --set-interpreter modifies in-place without rewriting the entire ELF,
# preserving the appended JS bundle that bun needs at runtime
postFixup = lib.optionalString stdenv.isLinux ''
interpreter="${glibc}/lib/${if stdenv.hostPlatform.system == "aarch64-linux" then "ld-linux-aarch64.so.1" else "ld-linux-x86-64.so.2"}"
patchelf --set-interpreter "$interpreter" $out/bin/claude
'';
meta = with lib; { meta = with lib; {
description = "Terminal-based AI coding assistant from Anthropic"; description = "Terminal-based AI coding assistant from Anthropic";
homepage = "https://www.anthropic.com/claude-code"; homepage = "https://www.anthropic.com/claude-code";