feat: +basecamp-cli
Some checks failed
Update Nix Packages with nix-update / nix-update (push) Failing after 7m22s

This commit is contained in:
sascha.koenig
2026-03-27 11:56:04 +01:00
parent b85be2cec0
commit 0f2693a812
3 changed files with 34 additions and 2 deletions

View File

@@ -2,7 +2,9 @@
pkgs,
inputs,
...
}: {
}: let
system = pkgs.stdenv.hostPlatform.system;
in {
# Custom packages registry
# Each package is defined in its own directory under pkgs/
sidecar = pkgs.callPackage ./sidecar {};
@@ -21,6 +23,10 @@
openshell = pkgs.callPackage ./openshell {};
zellij-ps = pkgs.callPackage ./zellij-ps {};
# Imported from flake inputs
# Imported from flake inputs (pass-through, no modifications)
basecamp = inputs.basecamp.packages.${system}.default;
openspec = inputs.openspec.packages.${system}.default;
# Imported from flake inputs (with local modifications)
opencode-desktop = pkgs.callPackage ./opencode-desktop {inherit inputs;};
}