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;
theme = "omarchy";
keybinds = [
"ctrl+k=reset"
];
};
themes = {
omarchy = {
+4 -3
View File
@@ -1,13 +1,14 @@
{
config,
lib,
pkgs,
...
}: {
wayland.windowManager.hyprland.settings = {
# Environment variables
# https://wiki.hyprland.org/Configuring/Variables/#input
input = {
kb_layout = us;
input = lib.mkDefault {
kb_layout = "us";
# kb_variant =
# kb_model =
kb_options = compose:caps;
@@ -23,7 +24,7 @@
};
# https://wiki.hyprland.org/Configuring/Variables/#gestures
gestures = {
gestures = lib.mkDefault {
workspace_swipe = false;
};
};