1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/configs/packages/programming.nix
2019-11-19 08:43:23 +01:00

26 lines
474 B
Nix

{ pkgs, ... }:
{
imports = [
{
environment.systemPackages = with pkgs; [
htmlTidy
nodePackages_10_x.csslint
nodePackages_10_x.jsonlint
nodePackages_10_x.prettier
nodePackages_10_x.typescript
nodePackages_10_x.yarn
nodejs-10_x
];
}
];
environment.systemPackages = with pkgs; [
tokei # count lines of code
gnumake
gcc
binutils # strip, ld, ...
rustup
shellcheck
];
}