nixos-configuration/machines/dev.nix

42 lines
484 B
Nix
Raw Permalink Normal View History

2022-02-18 16:38:45 +01:00
inputs:
{ pkgs, pkgs-unstable, ... }: {
2022-02-18 16:38:45 +01:00
environment.systemPackages = with pkgs; [
neovim
vim
vscodium
openssl.dev
pkg-config
docker-compose
binutils
curl
htop
2024-06-15 16:02:25 +02:00
nixfmt-classic
2022-02-18 16:38:45 +01:00
ripgrep
shellcheck
tmux
unzip
wget
git
rustup
direnv
2024-03-17 17:24:07 +01:00
# gitea cli
tea
2022-02-18 16:38:45 +01:00
#idea.idea-community
unstable.jetbrains.idea-community
2022-02-18 16:38:45 +01:00
2024-06-15 16:02:25 +02:00
dbeaver-bin
2022-02-18 16:38:45 +01:00
];
services.lorri.enable = true;
programs.adb.enable = true;
}