vanadium: move skeleton semantic profile out

This commit is contained in:
Primrose 2025-05-10 19:54:47 +02:00
parent b11520994f
commit 8ecebd141e
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 11 additions and 3 deletions

View file

@ -22,9 +22,6 @@ in {
pkgs.poppler_utils # pdfseparate, pdfunite pkgs.poppler_utils # pdfseparate, pdfunite
myPkgs.easyscan myPkgs.easyscan
# research
myPkgs.necrolib
# pretty tui tools # pretty tui tools
pkgs.du-dust pkgs.du-dust
pkgs.tldr pkgs.tldr

View file

@ -0,0 +1,11 @@
{
buildEnv,
#
myPkgs,
}:
buildEnv {
name = "skeleton-semantic";
paths = [
myPkgs.necrolib
];
}