13 lines
309 B
Nix
13 lines
309 B
Nix
{ inputs, ... }: {
|
|
programs.ghostty = {
|
|
enable = true;
|
|
package = inputs.ghostty.packages.x86_64-linux.ghostty;
|
|
enableZshIntegration = true;
|
|
settings = {
|
|
theme = "gruvbox-dark";
|
|
font-family = "IBM Plex Mono";
|
|
font-size = "12";
|
|
window-decoration = false;
|
|
};
|
|
};
|
|
}
|