Added Ghostty & Kitty, only using Ghostty

This commit is contained in:
2025-11-08 12:14:23 -05:00
parent a97d49f8a7
commit dee0c41a05
7 changed files with 221 additions and 128 deletions
+3 -1
View File
@@ -3,9 +3,11 @@
}:
{
imports = [
./alacritty.nix
# ./alacritty.nix
./firefox.nix
./ghostty.nix
./git.nix
# ./kitty.nix
./hypr
./mango.nix
./nvf.nix
+13
View File
@@ -0,0 +1,13 @@
{
...
}:
{
programs.ghostty = {
enable = true;
enableZshIntegration = true;
settings = {
theme = "Catppuccin Mocha";
};
systemd.enable = true;
};
}
+1
View File
@@ -37,6 +37,7 @@
"systemctl --user enable --now waybar.service"
"systemctl --user enable --now hyprpolkitagent.service"
"wpaperd -d"
"systemctl enable --user app-com.mitchellh.ghostty.service"
];
env = [
+1 -1
View File
@@ -11,7 +11,7 @@
bind = [
"$mod, Q, killactive"
"$mod, W, exec, alacritty"
"$mod, W, exec, ghostty +new-window"
"$mod, S, exec, rofi -show drun -show-icons"
# Window Movement
+14
View File
@@ -0,0 +1,14 @@
{
...
}:
{
programs.kitty = {
enable = true;
enableGitIntegration = true;
font = {
name = "FiraCode Nerd Font";
};
shellIntegration.enableZshIntegration = true;
themeFile = "Catppuccin-Mocha";
};
}