9 lines
189 B
Nix
9 lines
189 B
Nix
{ config, inputs, pkgs, ... }: {
|
|
programs.kitty = {
|
|
enable = true;
|
|
settings = {
|
|
editor = config.home.sessionVariables.EDITOR;
|
|
window_padding_width = 10;
|
|
};
|
|
};
|
|
}
|