Configure kitty term and make mouse not follow window

This commit is contained in:
2025-08-08 17:51:18 +02:00
parent ffe288c1ec
commit 897bebec05
2 changed files with 13 additions and 6 deletions
+13 -2
View File
@@ -1,6 +1,15 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
programs.kitty.enable = true; programs.kitty = {
enable = true;
themeFile = "tokyo_night_night";
font = {
package = pkgs.nerd-fonts.jetbrains-mono;
name = "JetBrainsMono NF";
size = 14;
};
};
wayland.windowManager.hyprland = wayland.windowManager.hyprland =
let let
# workspaces # workspaces
@@ -26,7 +35,7 @@
settings = { settings = {
monitor = [ monitor = [
",preferred,auto,1" ",1920x1080@60,0x0,1"
]; ];
"$mod" = "SUPER"; "$mod" = "SUPER";
bind = [ bind = [
@@ -56,6 +65,8 @@
"fadeIn,1,5,default" "fadeIn,1,5,default"
"workspaces,1,3,default" "workspaces,1,3,default"
]; ];
cursor.no_warps = true;
}; };
}; };
} }
-4
View File
@@ -51,10 +51,6 @@
wget wget
]; ];
fonts.packages = with pkgs; [
nerd-fonts.jetbrains-mono
];
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;