mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
Removes hyprland module imports (not needed for normal ops)
This commit is contained in:
parent
f01a4e3004
commit
8d6e9afd62
2 changed files with 27 additions and 28 deletions
|
@ -20,30 +20,34 @@
|
|||
services.mako.enable = 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
|
||||
enable = true;
|
||||
|
||||
input {
|
||||
kb_layout=${globals.keyboard.layout}
|
||||
kb_variant=${globals.keyboard.variant}
|
||||
sensitivity=0.4
|
||||
accel_profile=adaptive
|
||||
touchpad {
|
||||
natural_scroll=true
|
||||
scroll_factor=0.45
|
||||
tap-and-drag=true
|
||||
}
|
||||
}
|
||||
settings = {
|
||||
bind = [
|
||||
"SHIFT_SUPER, SPACE, exec, alacritty"
|
||||
"SUPER, SPACE, exec, rofi -modes \"ssh,drun,window\" -show drun"
|
||||
"ALT, SPACE, exec, rofi -show window"
|
||||
];
|
||||
|
||||
gestures {
|
||||
workspace_swipe=true
|
||||
workspace_swipe_fingers=3
|
||||
workspace_swipe_cancel_ratio=0.5
|
||||
workspace_swipe_distance=2000
|
||||
workspace_swipe_invert=true
|
||||
}
|
||||
'';
|
||||
input = {
|
||||
kb_layout = globals.keyboard.layout;
|
||||
kb_variant = globals.keyboard.variant;
|
||||
sensitivity = 0.4;
|
||||
accel_profile = "adaptive";
|
||||
touchpad = {
|
||||
natural_scroll = true;
|
||||
scroll_factor = 0.45;
|
||||
tap-and-drag = true;
|
||||
};
|
||||
};
|
||||
|
||||
gestures = {
|
||||
workspace_swipe = true;
|
||||
workspace_swipe_fingers = 3;
|
||||
workspace_swipe_cancel_ratio = 0.5;
|
||||
workspace_swipe_distance = 2000;
|
||||
workspace_swipe_invert = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -5,11 +5,6 @@
|
|||
}: {
|
||||
imports = [./desktop.nix];
|
||||
|
||||
home-manager.sharedModules = [
|
||||
{wayland.windowManager.hyprland.enable = true;}
|
||||
inputs.hyprland.homeManagerModules.default
|
||||
];
|
||||
|
||||
programs.hyprland.enable = true;
|
||||
programs.hyprland.package = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue