Begin add Plandex Pkgs

This commit is contained in:
Florian RICHER 2024-04-05 16:52:00 +02:00
parent ac0932aec7
commit a91480e10c
3 changed files with 33 additions and 0 deletions

View file

@ -10,6 +10,7 @@
./programs/direnv.nix
./programs/chromium.nix
./programs/flatpak.nix
# ./programs/plandex.nix
];
home = {

View file

@ -0,0 +1,7 @@
{ config, pkgs, ... }:
let
plandex_cli = pkgs.callPackage ../../pkgs/plandex_cli.nix { };
in
{
home.packages = [plandex_cli];
}