nix-config/home/common/desktop/kitty.nix
2024-08-10 21:31:53 +02:00

9 lines
189 B
Nix

{ config, inputs, pkgs, ... }: {
programs.kitty = {
enable = true;
settings = {
editor = config.home.sessionVariables.EDITOR;
window_padding_width = 10;
};
};
}