Files
nixos-dotfiles/modules/desktop/terminal/ghostty/default.nix

22 lines
421 B
Nix

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