fix: kitty settings on linux

This commit is contained in:
Ryan Yin
2023-07-16 17:02:15 +08:00
parent 3dff682ceb
commit b271e43df4

View File

@@ -13,9 +13,9 @@
macos_option_as_alt = true; # Option key acts as Alt on macOS macos_option_as_alt = true; # Option key acts as Alt on macOS
scrollback_lines = 10000; scrollback_lines = 10000;
enable_audio_bell = false; enable_audio_bell = false;
} // lib.mkIf pkgs.stdenv.isDarwin { } // (if pkgs.stdenv.isDarwin then {
# macOS specific settings, force kitty to use nushell as default shell # macOS specific settings, force kitty to use nushell as default shell
shell = "/run/current-system/sw/bin/nu"; shell = "/run/current-system/sw/bin/nu";
}; } else {});
}; };
} }