nixos-configuration/roles/subroles/dev.nix

39 lines
417 B
Nix
Raw Normal View History

2020-05-30 14:07:02 +02:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
neovim
vim
vscodium
openssl.dev
pkg-config
2020-05-30 14:07:02 +02:00
docker-compose
binutils
curl
htop
nixfmt
ripgrep
shellcheck
tmux
unzip
wget
git
rustup
direnv
2021-05-01 12:44:50 +02:00
2022-02-15 13:33:28 +01:00
#idea.idea-community
idea.idea-ultimate
2021-05-01 12:44:50 +02:00
2021-12-29 12:56:50 +01:00
dbeaver
2020-05-30 14:07:02 +02:00
];
services.lorri.enable = true;
programs.adb.enable = true;
}