ghostty test

This commit is contained in:
2025-07-19 20:08:01 +02:00
parent 00e9bb70f8
commit 1539c88df0
4 changed files with 13 additions and 23 deletions

View File

@@ -39,8 +39,8 @@ in {
nixconfig = "cd /home/$USER/.nix-config/";
homemodules = "$EDITOR /home/$USER/.nix-config/users/$USER/modules/{$hostname}mod.nix";
hmod = "$EDITOR /home/$USER/.nix-config/users/$USER/modules/{$hostname}mod.nix";
nixoptions = "$EDITOR /home/$USER/.nix-config/hosts/$hostname/options.nix";
nopt = "$EDITOR /home/$USER/.nix-config/hosts/$hostname/options.nix";
nixsettings = "$EDITOR /home/$USER/.nix-config/hosts/$hostname/settings.nix";
nset = "$EDITOR /home/$USER/.nix-config/hosts/$hostname/settings.nix";
nixosmodules = "$EDITOR /home/$USER/.nix-config/hosts/$hostname/modules.nix";
nmod = "$EDITOR /home/$USER/.nix-config/hosts/$hostname/modules.nix";
tree = "${getExe eza} --tree --icons=always";

View File

@@ -2,6 +2,7 @@
config,
lib,
osConfig,
pkgs,
...
}: let
inherit (lib) mkIf mkEnableOption mkMerge getExe;
@@ -15,6 +16,7 @@ in {
{
programs.ghostty = {
enable = true;
package = pkgs.ghostty-bin;
enableBashIntegration = config.programs.bash.enable;
enableFishIntegration = config.programs.fish.enable;
enableZshIntegration = config.programs.zsh.enable;