nixos-configuration/roles/subroles/dev.nix

43 lines
572 B
Nix
Raw Normal View History

2020-05-30 14:07:02 +02:00
{ config, pkgs, ... }:
{
2021-05-01 12:44:50 +02:00
# emacs overlay
nixpkgs.overlays = [
(import (builtins.fetchTarball https://github.com/nix-community/emacs-overlay/archive/master.tar.gz))
];
2020-05-30 14:07:02 +02:00
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
idea.idea-community
emacsUnstable # Installs Emacs 27
2020-05-30 14:07:02 +02:00
];
services.lorri.enable = true;
programs.adb.enable = true;
}