nix-dotfiles/wayland/sway.nix

33 lines
731 B
Nix

{ config, lib, pkgs, ... }:
{
enable = true;
config = {
terminal = "kitty";
modifier = "Mod4";
fonts = {
names = [ "Noto Sans" ];
style = "Regular";
size = 12.0;
};
input = { "type:touchpad" = { natural_scroll = "enabled"; }; };
window = {
border = 2;
titlebar = true;
};
menu = "j4-dmenu-desktop --dmenu='bemenu -i'";
focus.followMouse = false;
};
extraConfig =
''
output 'eDP-1' scale 1.50
'' + # Fractional scaling to 1.50
''
input type:touchpad {
natural_scroll disabled
dwt disabled
click_method clickfinger
}
''; # Disable fake scroll direction and disabling touchpad while typing, enable multi finger clicking
}