mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-06 21:16:35 +05:30
20 lines
293 B
Nix
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
|
|
];
|
|
}
|