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.
68 lines
788 B
68 lines
788 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
|
|
|
|
rstudio
|
|
quarto
|
|
conda
|
|
];
|
|
}
|
|
|