2023-06-06 02:37:52 +02:00
|
|
|
{pkgs, ...}: {
|
2023-06-06 05:07:04 +02:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
joshuto
|
2023-05-27 21:37:07 +02:00
|
|
|
];
|
|
|
|
|
2023-06-06 02:37:52 +02:00
|
|
|
home-manager.sharedModules = [
|
|
|
|
{
|
|
|
|
xdg.configFile."joshuto/joshuto.toml".text = ''
|
|
|
|
[display]
|
|
|
|
automatically_count_files = true
|
|
|
|
show_borders = false
|
|
|
|
show_hidden = true
|
|
|
|
line_number_style = "absolute"
|
|
|
|
collapse_preview = false
|
2023-05-27 21:37:07 +02:00
|
|
|
|
2023-06-06 02:37:52 +02:00
|
|
|
[preview]
|
|
|
|
max_preview_size = 10000000000
|
|
|
|
preview_script = "~/.config/joshuto/preview.sh"
|
|
|
|
preview_shown_hook_script = "~/.config/joshuto/kitty-show.sh"
|
|
|
|
preview_removed_hook_script = "~/.config/joshuto/kitty-remove.sh"
|
|
|
|
'';
|
2023-05-27 21:37:07 +02:00
|
|
|
|
2023-06-06 02:37:52 +02:00
|
|
|
xdg.configFile."joshuto/preview.sh".source = ./preview.sh;
|
|
|
|
xdg.configFile."joshuto/kitty-show.sh".source = ./kitty-show.sh;
|
|
|
|
xdg.configFile."joshuto/kitty-remove.sh".source = ./kitty-remove.sh;
|
|
|
|
}
|
|
|
|
];
|
2023-05-27 21:37:07 +02:00
|
|
|
}
|