20 lines
385 B
Nix
20 lines
385 B
Nix
{
|
|
imports = [
|
|
./cwd.nix
|
|
];
|
|
|
|
programs.kitty = {
|
|
enable = true;
|
|
settings = {
|
|
confirm_os_window_close = 0;
|
|
dynamic_background_opacity = true;
|
|
disable_ligatures = "always";
|
|
};
|
|
|
|
shellIntegration.enableZshIntegration = true;
|
|
};
|
|
|
|
home.sessionVariables."TERMINAL" = "kitty";
|
|
wayland.windowManager.hyprland.settings.env = ["TERMINAL,kitty"];
|
|
}
|