Files
2025-04-13 15:09:14 +08:00

22 lines
423 B
Nix

{ config, lib, ... }:
lib.my.makeHomeProgramConfig {
inherit config;
programName = "ghostty";
optionPath = [
"desktop"
"terminal"
"ghostty"
];
extraConfig = {
my.home.programs.ghostty = {
enableBashIntegration = true;
enableZshIntegration = true;
installBatSyntax = true;
settings = {
font-size = 14;
theme = "${./tokyonight-storm}";
};
};
};
}