Files
dotfiles/home/gui-programs/ghostty.nix

24 lines
411 B
Nix

{
pkgs,
device,
inputs,
...
}: {
programs.ghostty = {
enable = pkgs.stdenv.isLinux;
installBatSyntax = false;
settings = {
theme = "catppuccin-mocha";
# font-family = [
# ""
# "Hasklug Nerd Font Mono"
# ];
window-decoration = false;
title = "";
command = "fish";
background-opacity = 0.8;
};
package = pkgs.ghostty;
};
}