2021-03-24 21:55:57 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
programs = {
|
|
|
|
fish.enable = true;
|
|
|
|
gnupg.agent = {
|
|
|
|
enable = true;
|
|
|
|
pinentryFlavor = "curses";
|
|
|
|
};
|
2021-03-24 22:17:07 +01:00
|
|
|
less.enable = true;
|
2021-03-24 21:55:57 +01:00
|
|
|
mosh.enable = true;
|
2021-03-24 22:23:56 +01:00
|
|
|
ssh = {
|
|
|
|
startAgent = true;
|
|
|
|
extraConfig = ''
|
|
|
|
AddKeysToAgent yes
|
|
|
|
'';
|
|
|
|
};
|
2021-03-24 21:55:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
# shell usage
|
|
|
|
bat
|
2021-04-16 21:33:48 +02:00
|
|
|
fd
|
2021-03-24 21:55:57 +01:00
|
|
|
ripgrep
|
2021-04-23 10:53:37 +02:00
|
|
|
tmux
|
2021-04-18 14:47:15 +02:00
|
|
|
tree
|
2021-03-24 21:55:57 +01:00
|
|
|
wget
|
|
|
|
|
|
|
|
# development
|
|
|
|
git
|
2021-04-16 21:38:06 +02:00
|
|
|
git-crypt
|
2021-04-23 18:10:35 +02:00
|
|
|
git-lfs
|
2021-04-23 17:56:40 +02:00
|
|
|
gnumake
|
2021-03-24 21:55:57 +01:00
|
|
|
gnupg
|
|
|
|
pinentry-curses
|
2021-04-17 17:43:12 +02:00
|
|
|
python3
|
2021-03-24 21:55:57 +01:00
|
|
|
vim
|
|
|
|
|
|
|
|
# terminal utilities
|
|
|
|
htop
|
|
|
|
stow
|
|
|
|
];
|
|
|
|
}
|