vanadium: move lol packages to environment

This commit is contained in:
Primrose 2025-05-10 19:52:48 +02:00
parent f939be5249
commit b11520994f
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 15 additions and 5 deletions

View file

@ -22,11 +22,6 @@ in {
pkgs.poppler_utils # pdfseparate, pdfunite pkgs.poppler_utils # pdfseparate, pdfunite
myPkgs.easyscan myPkgs.easyscan
# fun
myPkgs.prop-solveur
myPkgs.hbrainfuck
pkgs.lucky-commit
# research # research
myPkgs.necrolib myPkgs.necrolib

15
nix/environments/fun.nix Normal file
View file

@ -0,0 +1,15 @@
{
buildEnv,
#
myPkgs,
pkgs,
}:
buildEnv {
name = "fun";
paths = [
myPkgs.prop-solveur
myPkgs.hbrainfuck
pkgs.lucky-commit
];
}