1
1
Fork 0
nixos/options/custom/programs/ghostty.nix
Myned cfdbf4a977
ghostty: initial program
Signed-off-by: Myned <dev@bjork.tech>
2025-01-07 21:50:16 -06:00

28 lines
514 B
Nix

{
config,
lib,
...
}:
with lib; let
cfg = config.custom.programs.ghostty;
hm = config.home-manager.users.${config.custom.username};
in {
options.custom.programs.ghostty = {
enable = mkOption {default = false;};
};
config = mkIf cfg.enable {
home-manager.sharedModules = [
{
# https://ghostty.org/
programs.ghostty = {
enable = true;
# https://ghostty.org/docs/config/reference
settings = {
};
};
}
];
};
}