Files
nixos/home/baseline/tools.nix
T

43 lines
811 B
Nix

{ lib, pkgs, ... }:
{
home.packages =
with pkgs;
[
dig
dnsutils
jqp
iamb
rainfrog
tenere
wiki-tui
]
++ (lib.optionals pkgs.stdenv.hostPlatform.isLinux [
impala
]);
programs = {
zellij = {
enable = true;
attachExistingSession = true;
enableZshIntegration = pkgs.stdenv.hostPlatform.isDarwin;
settings = {
default_shell = "xonsh";
keybinds = {
normal._children = [
{
bind = {
_args = [ "Ctrl b" ];
_children = [
{
SwitchToMode._args = [ "locked" ];
}
];
};
}
];
}; # /keybinds
}; # /settings
};
};
}