mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
48 lines
755 B
Nix
48 lines
755 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
|
|
in
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
# rust
|
|
unstable.cargo
|
|
unstable.clippy # lint
|
|
cargo-flamegraph
|
|
cargo-outdated
|
|
rustfmt
|
|
unstable.rustc
|
|
# general
|
|
clang
|
|
cloc
|
|
cmake
|
|
dfeet
|
|
direnv
|
|
entr
|
|
git
|
|
gnumake
|
|
go
|
|
hugo
|
|
meson
|
|
ninja
|
|
patchelf
|
|
pkg-config
|
|
(python3.withPackages (ps: with ps; [
|
|
jupyter # notebooks
|
|
matplotlib
|
|
numpy
|
|
pandas
|
|
pillow
|
|
plotly
|
|
scikitlearn
|
|
scipy
|
|
tqdm # progressbar in pandas
|
|
]))
|
|
ripgrep
|
|
shellcheck
|
|
topgrade
|
|
valgrind
|
|
vimPlugins.YouCompleteMe
|
|
ycmd
|
|
woeusb
|
|
];
|
|
}
|