nixos-configuration/roles/subroles/dev.nix
2020-05-30 14:07:02 +02:00

31 lines
323 B
Nix

{ 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;
}