mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-05 18:29:26 -05:00
Fix input issues
This commit is contained in:
@@ -19,6 +19,9 @@ in {
|
||||
font-size = 12;
|
||||
|
||||
theme = "omarchy";
|
||||
keybinds = [
|
||||
"ctrl+k=reset"
|
||||
];
|
||||
};
|
||||
themes = {
|
||||
omarchy = {
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user