1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00
Files
niveum/configs/packages/programming.nix

32 lines
588 B
Nix
Raw Normal View History

2019-08-18 11:17:28 +02:00
{ pkgs, ... }:
2019-12-27 12:56:42 +01:00
let
nightly = pkgs.rustChannelOf {
date = "2019-12-27";
channel = "nightly";
};
in {
2019-08-18 11:17:28 +02:00
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, ...
2019-11-24 10:40:32 +01:00
# rustup
2019-12-27 12:56:42 +01:00
nightly.rust
2019-08-18 11:17:28 +02:00
shellcheck
];
}