❄️ Dotfiles for our NixOS system configuration.

chore(ghostty): fix zsh path, disable auto-update

Chloe 55600221 89c13919

Changed files
+9 -2
home
chloe
programs
+9 -2
home/chloe/programs/gui/ghostty.nix
···
package = if pkgs.stdenv.hostPlatform.isLinux then pkgs.ghostty else pkgs.ghostty-bin;
settings = {
-
command = "/bin/zsh";
+
command = "${pkgs.zsh}/bin/zsh";
+
auto-update = "off";
font-family = "Iosevka";
font-size = 14;
···
confirm-close-surface = true;
shell-integration = "detect";
-
shell-integration-features = [ "cursor" "sudo" "title" "ssh-env" "ssh-terminfo" ];
+
shell-integration-features = [
+
"cursor"
+
"sudo"
+
"title"
+
"ssh-env"
+
"ssh-terminfo"
+
];
keybind = [
"super+n=new_window"