diff --git a/machines/dev.nix b/machines/dev.nix new file mode 100644 index 0000000..2dbd7b9 --- /dev/null +++ b/machines/dev.nix @@ -0,0 +1,38 @@ +inputs: +{ config, lib, 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 + idea.idea-ultimate + + dbeaver + ]; + + services.lorri.enable = true; + + programs.adb.enable = true; +}