nixos-configuration/roles/subroles/dev.nix

34 lines
355 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
neovim
vim
vscodium
openssl.dev
pkg-config
docker-compose
binutils
curl
htop
nixfmt
ripgrep
shellcheck
tmux
unzip
wget
git
rustup
direnv
];
services.lorri.enable = true;
programs.adb.enable = true;
}