20 lines
206 B
Nix
20 lines
206 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
# languages
|
|
nim
|
|
rustup
|
|
|
|
# devel
|
|
pandoc
|
|
|
|
# microcontrollers
|
|
picocom
|
|
gnumake
|
|
|
|
# Useful utils
|
|
grex
|
|
];
|
|
|
|
}
|