40 lines
564 B
Nix
40 lines
564 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs = {
|
|
fish.enable = true;
|
|
gnupg.agent = {
|
|
enable = true;
|
|
pinentryFlavor = "curses";
|
|
};
|
|
less.enable = true;
|
|
mosh.enable = true;
|
|
ssh = {
|
|
startAgent = true;
|
|
extraConfig = ''
|
|
AddKeysToAgent yes
|
|
'';
|
|
};
|
|
tmux = {
|
|
enable = true;
|
|
baseIndex = 1;
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# shell usage
|
|
bat
|
|
ripgrep
|
|
wget
|
|
|
|
# development
|
|
git
|
|
gnupg
|
|
pinentry-curses
|
|
vim
|
|
|
|
# terminal utilities
|
|
htop
|
|
stow
|
|
];
|
|
}
|