From 91b4862c59a3bf3bf7e30b2e85f22b4d7a6882f1 Mon Sep 17 00:00:00 2001 From: osbm Date: Tue, 9 Sep 2025 15:06:55 +0300 Subject: [PATCH] no ghostty --- darwinHosts/prometheus/configuration.nix | 3 ++- home/home.nix | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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; }