From 9c901f84a38554a5ced69eeed84ba1935d0012e4 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 27 Apr 2026 11:10:42 -0700 Subject: [PATCH] Switch keepbook flake input from local path to GitHub The local path: input broke system.autoUpgrade since the path doesn't exist when building from the GitHub flake URL. Co-Authored-By: Claude Opus 4.6 (1M context) --- nixos/flake.lock | 15 +++++++++------ nixos/flake.nix | 2 +- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/nixos/flake.lock b/nixos/flake.lock index 80f27589..32879579 100644 --- a/nixos/flake.lock +++ b/nixos/flake.lock @@ -1548,14 +1548,17 @@ ] }, "locked": { - "lastModified": 1777148012, - "narHash": "sha256-ExYOcgFOu8yTU00ZvZC0QLLuigaest/zhc3ecJsXnfs=", - "path": "/home/imalison/Projects/keepbook", - "type": "path" + "lastModified": 1777261868, + "narHash": "sha256-30E1RBr0FGrf1IdXi2OKua+vQ4sUvjwUq6lfC1qcBug=", + "owner": "colonelpanic8", + "repo": "keepbook", + "rev": "2e178e7ba864af0a880456dca241615dd75afd24", + "type": "github" }, "original": { - "path": "/home/imalison/Projects/keepbook", - "type": "path" + "owner": "colonelpanic8", + "repo": "keepbook", + "type": "github" } }, "mova": { diff --git a/nixos/flake.nix b/nixos/flake.nix index a2412c83..798ae0d9 100644 --- a/nixos/flake.nix +++ b/nixos/flake.nix @@ -47,7 +47,7 @@ }; keepbook = { - url = "path:/home/imalison/Projects/keepbook"; + url = "github:colonelpanic8/keepbook"; inputs = { nixpkgs.follows = "nixpkgs"; flake-utils.follows = "flake-utils";