Files
tawm/modules/home-manager/ghostty/default.nix
2025-01-04 11:10:26 +05:30

20 lines
293 B
Nix

{pkgs, ...}: {
home.file = {
".config/ghostty/config" = {
text = ''
theme = rose-pine
gtk-titlebar = false
window-padding-x = 10
window-padding-y = 10
font-size = 16
'';
};
};
home.packages = with pkgs; [
ghostty
];
}