Skip to content
Draft
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
22 changes: 22 additions & 0 deletions nix-darwin/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions nix-darwin/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};

gmcli = {
url = "github:colonelpanic8/gmcli?ref=agent/json-archive-export";
inputs.nixpkgs.follows = "nixpkgs";
};

codex-cli-nix = {
# Default branch is `main` on GitHub (not `master`).
url = "github:sadjow/codex-cli-nix/main";
Expand Down
2 changes: 2 additions & 0 deletions nix-shared/system/essential.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
};
});
coquiTtsStreamer = inputPackageOrNull "coqui-tts-streamer" "default";
gmcli = inputPackageOrNull "gmcli" "default";
keepbook = inputs.keepbook.packages.${system}.keepbook.overrideAttrs (_: {
# Upstream checks currently depend on TS artifacts that are not built in Nix.
doCheck = false;
Expand Down Expand Up @@ -85,6 +86,7 @@
])
++ lib.optionals (!isJayLenovo) [pkgs.bazel]
++ lib.optionals (coquiTtsStreamer != null) [coquiTtsStreamer]
++ lib.optionals (gmcli != null) [gmcli]
++ lib.optionals (builtins.hasAttr "git-sync-rs" pkgs) [pkgs.git-sync-rs]);

linuxOnly = with pkgs; [
Expand Down
22 changes: 22 additions & 0 deletions nixos/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions nixos/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@
};
};

gmcli = {
url = "github:colonelpanic8/gmcli?ref=agent/json-archive-export";
inputs.nixpkgs.follows = "nixpkgs";
};

keepbook = {
url = "github:colonelpanic8/keepbook";
inputs = {
Expand Down
Loading