nixos-configuration/roles/subroles/dev.nix

31 lines
323 B
Nix
Raw Normal View History

2020-05-30 14:07:02 +02:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
neovim
vim
vscodium
docker-compose
binutils
curl
htop
nixfmt
ripgrep
shellcheck
tmux
unzip
wget
git
rustup
direnv
];
services.lorri.enable = true;
programs.adb.enable = true;
}