Remove vector code stuff

This commit is contained in:
Martin Larsson 2025-05-08 19:14:17 +02:00
parent c9d664b9c0
commit 451b494851
3 changed files with 3 additions and 27 deletions

View file

@ -1,17 +1,9 @@
{ pkgs, lib, ... }: { pkgs, ... }:
{ {
home = { home = {
packages = with pkgs; [ packages = with pkgs; [
(python313.withPackages (pythonPkgs: [
pythonPkgs.pipx
]))
clang clang
clang-tools 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
'';
} }

View file

@ -1,10 +1,9 @@
{ pkgs, lib, ... }: { pkgs, ... }:
{ {
home = { home = {
packages = with pkgs; [ packages = with pkgs; [
(python311.withPackages (pythonPkgs: [ (python311.withPackages (pythonPkgs: [
pythonPkgs.pip pythonPkgs.pip
pythonPkgs.pipx
pythonPkgs.setuptools pythonPkgs.setuptools
])) ]))
pcre pcre
@ -12,12 +11,4 @@
mkdocs mkdocs
]; ];
}; };
(python313.withPackages (pythonPkgs: [
pythonPkgs.pipx
]))
home.activation.installVectorcode = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
echo "Installing VectorCode with pipx..."
$DRY_RUN_CMD ${pkgs.python311Packages.pipx}/bin/pipx install --force vectorcode
'';
} }

View file

@ -1,17 +1,10 @@
{ pkgs, lib, ... }: { pkgs, ... }:
{ {
home = { home = {
packages = with pkgs; [ packages = with pkgs; [
(python313.withPackages (pythonPkgs: [
pythonPkgs.pipx
]))
wslu wslu
clang clang
clang-tools 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
'';
} }