diff --git a/darwinHosts/prometheus/configuration.nix b/darwinHosts/prometheus/configuration.nix index 4d0b0b7..65690cd 100644 --- a/darwinHosts/prometheus/configuration.nix +++ b/darwinHosts/prometheus/configuration.nix @@ -17,6 +17,7 @@ homeDirectory = "/Users/mac"; stateVersion = "24.11"; enableGTK = false; + enableGhostty = false; }; }; # Allow unfree packages @@ -95,7 +96,7 @@ }; environment.systemPackages = with pkgs; [ alacritty - ghostty + # ghostty kitty vscode blender diff --git a/home/home.nix b/home/home.nix index 20b5d62..c433f51 100644 --- a/home/home.nix +++ b/home/home.nix @@ -4,6 +4,7 @@ stateVersion, config, enableGTK ? config.myModules.enableKDE, + enableGhostty ? config.myModules.enableKDE, pkgs, ... }: @@ -38,6 +39,6 @@ enableGTK = enableGTK; enableFirefox = config.myModules.enableKDE; enableAlacritty = config.myModules.enableKDE; - enableGhostty = config.myModules.enableKDE; + enableGhostty = enableGhostty; enableWezterm = config.myModules.enableKDE; }