mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-04 06:03:15 +01:00
3119b789f8
Alejandra is written in Rust, has more tests than nixfmt, and handles non-trivial code examples in Nix better.
33 lines
731 B
Nix
33 lines
731 B
Nix
{
|
|
home-manager.sharedModules = [
|
|
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
enable_audio_bell = false;
|
|
close_on_child_death = true;
|
|
cursor_blink_interval = 0;
|
|
|
|
open_url_with = "librewolf";
|
|
wayland_titlebar_color = "background";
|
|
|
|
allow_remote_control = true;
|
|
listen_on = "unix:/tmp/kitty";
|
|
dynamic_background_opacity = true;
|
|
|
|
window_padding_width = 5;
|
|
tab_bar_margin_width = 5;
|
|
};
|
|
};
|
|
|
|
xdg.configFile."kitty/diff.conf".text = ''
|
|
map d scroll_to next-page
|
|
map u scroll_to prev-page
|
|
map g scroll_to start
|
|
map G scroll_to end
|
|
'';
|
|
}
|
|
];
|
|
}
|