mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +00:00
Fixes Hyprland config (settings -> extraConfig)
This commit is contained in:
parent
2885c61fd3
commit
821e873d1f
1 changed files with 24 additions and 35 deletions
|
@ -2,13 +2,9 @@
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
inputs,
|
globals,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
|
||||||
inputs.hyprland.homeManagerModules.default
|
|
||||||
];
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
firefox
|
firefox
|
||||||
lxappearance
|
lxappearance
|
||||||
|
@ -24,37 +20,30 @@
|
||||||
services.mako.enable = true;
|
services.mako.enable = true;
|
||||||
|
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
settings = {
|
extraConfig = ''
|
||||||
input = {
|
bind = SHIFT_SUPER, SPACE, exec, alacritty
|
||||||
sensitivity = 0.4;
|
bind = SUPER, SPACE, exec, rofi -modes "ssh,drun,window" -show drun
|
||||||
accel_profile = "adaptive";
|
bind = ALT, SPACE, exec, rofi -show window
|
||||||
touchpad = {
|
|
||||||
natural_scroll = true;
|
|
||||||
scroll_factor = 0.45;
|
|
||||||
tap-and-drag = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
gestures = {
|
input {
|
||||||
workspace_swipe = true;
|
kb_layout=${globals.keyboard.layout}
|
||||||
workspace_swipe_fingers = 3;
|
kb_variant=${globals.keyboard.variant}
|
||||||
workspace_swipe_cancel_ratio = 0.5;
|
sensitivity=0.4
|
||||||
workspace_swipe_distance = 2000;
|
accel_profile=adaptive
|
||||||
workspace_swipe_invert = true;
|
touchpad {
|
||||||
};
|
natural_scroll=true
|
||||||
};
|
scroll_factor=0.45
|
||||||
|
tap-and-drag=true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
enable = true;
|
gestures {
|
||||||
|
workspace_swipe=true
|
||||||
|
workspace_swipe_fingers=3
|
||||||
|
workspace_swipe_cancel_ratio=0.5
|
||||||
|
workspace_swipe_distance=2000
|
||||||
|
workspace_swipe_invert=true
|
||||||
|
}
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
wayland.windowManager.hyprland.extraConfig = ''
|
|
||||||
bind = SHIFT_SUPER, SPACE, exec, alacritty
|
|
||||||
bind = SUPER, SPACE, exec, rofi -modes "ssh,drun,window" -show drun
|
|
||||||
bind = ALT, SPACE, exec, rofi -show window
|
|
||||||
|
|
||||||
input {
|
|
||||||
kb_layout=us
|
|
||||||
kb_variant=colemak
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue