migra a version nueva de shenvs
This commit is contained in:
parent
177659997f
commit
8f48524a76
13 changed files with 61 additions and 80 deletions
13
home/shenvs/c.nix
Normal file
13
home/shenvs/c.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{pkgs, ...} :
|
||||
{
|
||||
packages = with pkgs; [
|
||||
binutils
|
||||
gdb
|
||||
gcc-arm-embedded
|
||||
gnumake
|
||||
lldb
|
||||
openocd
|
||||
qemu
|
||||
valgrind
|
||||
];
|
||||
}
|
||||
15
home/shenvs/octave.nix
Normal file
15
home/shenvs/octave.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{pkgs, ...}:
|
||||
{
|
||||
packages = with pkgs; [
|
||||
(octave.withPackages (packages: with packages; [
|
||||
symbolic
|
||||
]))
|
||||
pipenv
|
||||
(python39.withPackages (packages: with packages; [
|
||||
numpy
|
||||
scipy
|
||||
sympy
|
||||
matplotlib
|
||||
]))
|
||||
];
|
||||
}
|
||||
12
home/shenvs/proba.nix
Normal file
12
home/shenvs/proba.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{pkgs, ...}:
|
||||
{
|
||||
packages = with pkgs; [
|
||||
pipenv
|
||||
(python310.withPackages ( packages: with packages; [
|
||||
matplotlib
|
||||
numpy
|
||||
pandas
|
||||
scipy
|
||||
]))
|
||||
];
|
||||
}
|
||||
9
home/shenvs/tcrb.nix
Normal file
9
home/shenvs/tcrb.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{pkgs, ... }:
|
||||
{
|
||||
packages = with pkgs; [
|
||||
pipenv
|
||||
(python310.withPackages ( packages: with packages; [
|
||||
setuptools
|
||||
]))
|
||||
];
|
||||
}
|
||||
Reference in a new issue