no ghostty

This commit is contained in:
Osman Faruk Bayram 2025-09-09 15:06:55 +03:00
parent 66e52b0d01
commit 91b4862c59
2 changed files with 4 additions and 2 deletions

View file

@ -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

View file

@ -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;
}