add: misc.nix, input.nix

This commit is contained in:
kenji
2025-12-26 13:10:31 -06:00
parent 5e905af198
commit a97d65ac0e
3 changed files with 17 additions and 1 deletions
+2
View File
@@ -5,6 +5,8 @@
./hypr/exec.nix
./hypr/rules.nix
./hypr/animation.nix
./hypr/misc.nix
./hypr/input.nix
];
wayland.windowManager.hyprland.enable = true;
wayland.windowManager.hyprland.systemd.enable = false; # for UWSM support...
+6
View File
@@ -0,0 +1,6 @@
{
wayland.windowManager.hyprland.settings = {
repeat_rate = 50;
repeat_delay = 300;
};
}
+9 -1
View File
@@ -1,3 +1,11 @@
{
wayland.windowManager.hyprland.settings = {};
wayland.windowManager.hyprland.settings = {
misc = {
disable_hyprland_logo = true;
disable_splash_rendering = true;
focus_on_activate = true;
anr_missed_pings = 3;
new_window_takes_over_fullscreen = 1;
};
};
}