diff --git a/modules/home-manager/ghostty.nix b/modules/home-manager/ghostty.nix index 1f1babf..d6a24f4 100644 --- a/modules/home-manager/ghostty.nix +++ b/modules/home-manager/ghostty.nix @@ -19,6 +19,9 @@ in { font-size = 12; theme = "omarchy"; + keybinds = [ + "ctrl+k=reset" + ]; }; themes = { omarchy = { diff --git a/modules/home-manager/hyprland/input.nix b/modules/home-manager/hyprland/input.nix index 62bc1a4..067dfc3 100644 --- a/modules/home-manager/hyprland/input.nix +++ b/modules/home-manager/hyprland/input.nix @@ -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; }; };