17 lines
414 B
Nix
17 lines
414 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
home = {
|
|
packages = with pkgs; [
|
|
(python313.withPackages (pythonPkgs: [
|
|
pythonPkgs.pipx
|
|
]))
|
|
wslu
|
|
clang
|
|
clang-tools
|
|
];
|
|
};
|
|
home.activation.installVectorcode = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
|
echo "Installing VectorCode with pipx..."
|
|
$DRY_RUN_CMD ${pkgs.python311Packages.pipx}/bin/pipx install --force vectorcode
|
|
'';
|
|
}
|