39 lines
422 B
Nix
39 lines
422 B
Nix
inputs:
|
|
{ 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
|
|
|
|
#idea.idea-community
|
|
jetbrains.idea-ultimate
|
|
|
|
dbeaver
|
|
];
|
|
|
|
services.lorri.enable = true;
|
|
|
|
programs.adb.enable = true;
|
|
}
|