2025-07-11 10:48:17 -04:00
|
|
|
{ lib, pkgs, ... }:
|
2025-07-01 22:33:18 -04:00
|
|
|
{
|
2025-07-28 22:13:03 -05:00
|
|
|
home.packages =
|
|
|
|
|
with pkgs;
|
|
|
|
|
[
|
|
|
|
|
dig
|
|
|
|
|
dnsutils
|
|
|
|
|
jqp
|
|
|
|
|
iamb
|
|
|
|
|
rainfrog
|
|
|
|
|
tenere
|
|
|
|
|
wiki-tui
|
|
|
|
|
]
|
|
|
|
|
++ (lib.optionals pkgs.stdenv.hostPlatform.isLinux [
|
|
|
|
|
impala
|
|
|
|
|
]);
|
2025-07-24 09:56:18 -05:00
|
|
|
|
|
|
|
|
programs = {
|
|
|
|
|
zellij = {
|
|
|
|
|
enable = true;
|
|
|
|
|
attachExistingSession = true;
|
|
|
|
|
enableZshIntegration = pkgs.stdenv.hostPlatform.isDarwin;
|
|
|
|
|
settings = {
|
2025-08-07 11:24:37 -05:00
|
|
|
default_shell = "xonsh";
|
2025-07-24 09:56:18 -05:00
|
|
|
keybinds = {
|
|
|
|
|
normal._children = [
|
|
|
|
|
{
|
|
|
|
|
bind = {
|
|
|
|
|
_args = [ "Ctrl b" ];
|
|
|
|
|
_children = [
|
|
|
|
|
{
|
|
|
|
|
SwitchToMode._args = [ "locked" ];
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
}; # /keybinds
|
|
|
|
|
}; # /settings
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-07-01 22:33:18 -04:00
|
|
|
}
|