21 lines
491 B
Nix
21 lines
491 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
programs.ghostty = {
|
|
enable = true;
|
|
settings = {
|
|
clipboard-paste-protection = false;
|
|
clipboard-read = "allow";
|
|
font-family = "0xProto Nerd Font Mono";
|
|
font-size = 12;
|
|
gtk-titlebar = false;
|
|
scrollback-limit = 100000;
|
|
shell-integration = "zsh";
|
|
theme = "noctalia"; # generated by noctalia-shell
|
|
window-decoration = "auto";
|
|
window-padding-x = 10;
|
|
window-padding-y = 10;
|
|
};
|
|
};
|
|
}
|