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;
|
font-size = 12;
|
||||||
|
|
||||||
theme = "omarchy";
|
theme = "omarchy";
|
||||||
|
keybinds = [
|
||||||
|
"ctrl+k=reset"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
themes = {
|
themes = {
|
||||||
omarchy = {
|
omarchy = {
|
||||||
|
|||||||
@@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user