Files
dotfiles/home/apps/ghostty.nix
uttarayan21 0125345990
Some checks failed
Flake checker / Build Nix targets (push) Failing after 16s
feat(ghostty): update device check and font configuration
feat(programs): add rustup configuration
2025-09-29 11:26:59 +05:30

21 lines
350 B
Nix

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