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.
22 lines
692 B
22 lines
692 B
9 years ago
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
environment = {
|
||
|
variables = {
|
||
|
EDITOR = "nvim";
|
||
|
};
|
||
|
|
||
|
systemPackages = with pkgs; [
|
||
|
bar-xft # Lightweight xcb based bar
|
||
|
cabal-install # Haskell package installer
|
||
|
curl # Tool for general HTTP, FTP, etc work
|
||
|
ghc # Haskell Compiler
|
||
|
git # Source control
|
||
|
neovim # Better vim
|
||
|
python3 # Python 3
|
||
|
silver-searcher # Better than grep
|
||
|
vim # Regular ole' vim
|
||
|
wget # Standard GNU package for HTTP, FTP, etc file retrieval
|
||
|
];
|
||
|
};
|
||
|
}
|