nixos/profiles/development/default.nix
2025-11-25 21:17:52 +01:00

50 lines
811 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.my.profiles.development;
in
{
options.my.profiles.development = {
enable = lib.mkEnableOption "development profile";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
# tools
cloc
direnv
entr
ripgrep
# general
clang
cmake
gnumake
meson
ninja
# websites
hugo
# scripts
(python3.withPackages (
ps: with ps; [
jupyter # notebooks
matplotlib
numpy
pandas
pillow
plotly
scikit-learn
scipy
tqdm # progressbar in pandas
wheel # python development
]
))
# linter
shellcheck
typos
];
};
}