Fix input issues

This commit is contained in:
Henry Sipp
2025-07-08 21:37:26 -05:00
parent ff7c3de569
commit 0afcfa7994
2 changed files with 7 additions and 3 deletions
+3
View File
@@ -19,6 +19,9 @@ in {
font-size = 12; font-size = 12;
theme = "omarchy"; theme = "omarchy";
keybinds = [
"ctrl+k=reset"
];
}; };
themes = { themes = {
omarchy = { omarchy = {
+4 -3
View File
@@ -1,13 +1,14 @@
{ {
config, config,
lib,
pkgs, pkgs,
... ...
}: { }: {
wayland.windowManager.hyprland.settings = { wayland.windowManager.hyprland.settings = {
# Environment variables # Environment variables
# https://wiki.hyprland.org/Configuring/Variables/#input # https://wiki.hyprland.org/Configuring/Variables/#input
input = { input = lib.mkDefault {
kb_layout = us; kb_layout = "us";
# kb_variant = # kb_variant =
# kb_model = # kb_model =
kb_options = compose:caps; kb_options = compose:caps;
@@ -23,7 +24,7 @@
}; };
# https://wiki.hyprland.org/Configuring/Variables/#gestures # https://wiki.hyprland.org/Configuring/Variables/#gestures
gestures = { gestures = lib.mkDefault {
workspace_swipe = false; workspace_swipe = false;
}; };
}; };