2021-07-10 15:22:38 -06:00
|
|
|
{ pkgs, ... }:
|
2021-07-11 19:10:07 -06:00
|
|
|
let
|
|
|
|
my-python-packages = python-packages: with python-packages; [
|
|
|
|
appdirs
|
|
|
|
ipdb
|
|
|
|
ipython
|
|
|
|
numpy
|
|
|
|
openpyxl
|
|
|
|
pip
|
|
|
|
requests
|
|
|
|
tox
|
|
|
|
virtualenv
|
|
|
|
virtualenvwrapper
|
|
|
|
];
|
|
|
|
python-with-my-packages = pkgs.python3.withPackages my-python-packages;
|
|
|
|
in
|
2021-07-10 15:21:29 -06:00
|
|
|
{
|
2022-05-30 14:25:07 -06:00
|
|
|
nixpkgs.config.allowBroken = true;
|
2023-06-28 22:27:09 -06:00
|
|
|
|
2021-07-10 15:21:29 -06:00
|
|
|
environment.systemPackages = with pkgs; [
|
2021-07-11 19:10:07 -06:00
|
|
|
python-with-my-packages
|
2023-06-21 17:52:19 -06:00
|
|
|
(emacs29.override {
|
|
|
|
withNativeCompilation = true;
|
|
|
|
withTreeSitter = true;
|
|
|
|
})
|
2021-07-10 15:21:29 -06:00
|
|
|
|
|
|
|
# Tools
|
2023-06-18 00:40:15 -06:00
|
|
|
automake
|
2022-09-27 09:38:29 -06:00
|
|
|
bazel
|
2023-06-18 00:40:15 -06:00
|
|
|
bind
|
2021-07-10 15:21:29 -06:00
|
|
|
binutils
|
2023-06-18 00:40:15 -06:00
|
|
|
cmake
|
|
|
|
dex
|
|
|
|
direnv
|
|
|
|
dpkg
|
|
|
|
fd
|
|
|
|
file
|
2021-07-13 03:37:03 -06:00
|
|
|
gawk
|
2023-06-18 00:40:15 -06:00
|
|
|
gcc
|
|
|
|
gdb
|
|
|
|
gitFull
|
2023-06-28 23:44:54 -06:00
|
|
|
git-sync
|
|
|
|
gnumake
|
2021-07-11 13:34:38 -06:00
|
|
|
htop
|
2023-06-28 23:44:54 -06:00
|
|
|
inotify-tools
|
|
|
|
ispell
|
2023-04-21 11:17:13 -06:00
|
|
|
jq
|
2021-07-14 20:42:35 -06:00
|
|
|
lsof
|
2023-05-14 15:15:10 -06:00
|
|
|
ncdu
|
2023-06-28 23:44:54 -06:00
|
|
|
neofetch
|
2023-05-14 15:15:10 -06:00
|
|
|
nix-index
|
2021-07-19 19:38:04 -06:00
|
|
|
pass
|
2023-06-28 23:44:54 -06:00
|
|
|
patchelf
|
2023-04-21 11:17:13 -06:00
|
|
|
pciutils
|
2023-06-28 23:44:54 -06:00
|
|
|
pstree
|
2022-09-27 09:38:29 -06:00
|
|
|
rclone
|
2021-07-10 15:21:29 -06:00
|
|
|
rcm
|
|
|
|
ripgrep
|
2021-07-11 16:55:55 -06:00
|
|
|
silver-searcher
|
2021-07-10 15:21:29 -06:00
|
|
|
tmux
|
2023-06-18 00:40:15 -06:00
|
|
|
tzupdate
|
2023-06-28 22:27:09 -06:00
|
|
|
udiskie
|
2023-04-21 11:17:13 -06:00
|
|
|
unzip
|
2021-07-11 16:55:55 -06:00
|
|
|
usbutils
|
2021-07-10 15:21:29 -06:00
|
|
|
wget
|
2021-07-10 15:22:38 -06:00
|
|
|
yubikey-manager
|
2021-07-10 15:21:29 -06:00
|
|
|
];
|
|
|
|
}
|