- Add `opencode` flake input pinned to v1.1.27 for stability - Remove local `pkgs/opencode` derivation and overlay - Add `opencode` and `opencode-desktop` to `pkgs/default.nix` from input
21 lines
891 B
Nix
21 lines
891 B
Nix
{pkgs, inputs ? null, ...}: {
|
|
# Custom packages registry
|
|
# Each package is defined in its own directory under pkgs/
|
|
beads = pkgs.callPackage ./beads {};
|
|
code2prompt = pkgs.callPackage ./code2prompt {};
|
|
hyprpaper-random = pkgs.callPackage ./hyprpaper-random {};
|
|
launch-webapp = pkgs.callPackage ./launch-webapp {};
|
|
mem0 = pkgs.callPackage ./mem0 {};
|
|
msty-studio = pkgs.callPackage ./msty-studio {};
|
|
n8n = pkgs.callPackage ./n8n {};
|
|
pomodoro-timer = pkgs.callPackage ./pomodoro-timer {};
|
|
rofi-project-opener = pkgs.callPackage ./rofi-project-opener {};
|
|
stt-ptt = pkgs.callPackage ./stt-ptt {};
|
|
tuxedo-backlight = pkgs.callPackage ./tuxedo-backlight {};
|
|
zellij-ps = pkgs.callPackage ./zellij-ps {};
|
|
|
|
# Imported from flake inputs
|
|
opencode = inputs.opencode.packages.${pkgs.system}.opencode;
|
|
opencode-desktop = inputs.opencode.packages.${pkgs.system}.desktop;
|
|
}
|