initial public commit
This commit is contained in:
commit
93d38992e1
33 changed files with 1761 additions and 0 deletions
14
home/shenvs/c.nix
Normal file
14
home/shenvs/c.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
static = true;
|
||||
|
||||
packages = with pkgs; [
|
||||
binutils
|
||||
cmake
|
||||
curl
|
||||
gdb
|
||||
gnumake
|
||||
rustup
|
||||
valgrind
|
||||
];
|
||||
}
|
||||
11
home/shenvs/python.nix
Normal file
11
home/shenvs/python.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
static = true;
|
||||
|
||||
packages = with pkgs; [
|
||||
pipenv
|
||||
(python310.withPackages (packages: with packages; [
|
||||
setuptools
|
||||
]))
|
||||
];
|
||||
}
|
||||
Reference in a new issue