2024-07-17 10:54:54 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
unstable.devenv
|
2024-08-01 12:44:07 +02:00
|
|
|
unstable.surrealist
|
|
|
|
cloc
|
2024-07-17 10:54:54 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
programs.direnv = {
|
|
|
|
enable = true;
|
|
|
|
enableBashIntegration = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.zellij = {
|
|
|
|
enable = true;
|
|
|
|
# enableBashIntegration = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
home.file.zellij = {
|
|
|
|
target = ".config/zellij/config.kdl";
|
|
|
|
text = ''
|
|
|
|
pane_frames false
|
|
|
|
keybinds {
|
|
|
|
normal {
|
|
|
|
bind "Ctrl e" { ToggleFloatingPanes; SwitchToMode "normal"; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
home.file.zellij-layout-default = {
|
|
|
|
target = ".config/zellij/layouts/default.kdl";
|
|
|
|
text = ''
|
|
|
|
layout {
|
|
|
|
pane
|
|
|
|
floating_panes {
|
|
|
|
pane {
|
|
|
|
width "80%"
|
|
|
|
height "80%"
|
|
|
|
x "10%"
|
|
|
|
y "10%"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|