nixos-config/base/programs.nix

31 lines
429 B
Nix
Raw Normal View History

2021-03-24 21:55:57 +01:00
{ pkgs, ... }:
{
programs = {
fish.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "curses";
};
mosh.enable = true;
tmux.enable = true;
};
environment.systemPackages = with pkgs; [
# shell usage
bat
ripgrep
wget
# development
git
gnupg
pinentry-curses
vim
# terminal utilities
htop
stow
];
}