42 lines
484 B
Nix
42 lines
484 B
Nix
inputs:
|
|
{ pkgs, pkgs-unstable, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
neovim
|
|
vim
|
|
vscodium
|
|
|
|
openssl.dev
|
|
pkg-config
|
|
|
|
docker-compose
|
|
|
|
binutils
|
|
curl
|
|
htop
|
|
nixfmt-classic
|
|
ripgrep
|
|
shellcheck
|
|
tmux
|
|
unzip
|
|
wget
|
|
|
|
git
|
|
|
|
rustup
|
|
|
|
direnv
|
|
|
|
# gitea cli
|
|
tea
|
|
|
|
#idea.idea-community
|
|
unstable.jetbrains.idea-community
|
|
|
|
dbeaver-bin
|
|
];
|
|
|
|
services.lorri.enable = true;
|
|
|
|
programs.adb.enable = true;
|
|
}
|