NixOS deployment for LinuxLab
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
801 B

{ pkgs, lib, ... }:
with lib;
{
programs = {
vim = {
enable = true;
defaultEditor = true;
};
chromium.enable = true;
firefox.enable = true;
fish.enable = true;
git.enable = true;
htop.enable = true;
mtr.enable = true;
appimage = {
enable = true;
binfmt = true;
};
};
environment.systemPackages = with pkgs; [
bat
eza
nil
fd
ripgrep
vscode
vim
tmux
wget
curl
perl
nano
bash
git
autoconf
automake
pkg-config
coreutils
flex
gcc
gdb
gnumake
(getDev openmpi)
(getBin openmpi)
hwloc
postgresql
(getDev postgresql)
(getLib postgresql)
python3
qt5.full
qt6.full
rstudio
quarto
conda
];
}