Files
nixos-blueprint/hosts/sarien/work_user/programs/terminal/ghostty.nix
unexplrd 2e6e28ef32 initial
2025-02-06 00:33:06 +02:00

19 lines
337 B
Nix

{
config,
lib,
...
}:
with lib; let
cfg = config.terminal.ghostty;
in {
options = {
terminal.ghostty.enable = mkEnableOption "enable ghostty terminal";
};
config = mkIf cfg.enable {
programs.ghostty.enable = true;
# home.packages = [
# inputs.ghostty.packages.x86_64-linux.default
# pkgs.ghostty
};
}