nix-dotfiles/wayland/sway.nix
2024-01-05 02:21:04 +00:00

19 lines
355 B
Nix

{ scripts, config, lib, pkgs, ... }:
{
enable = true;
config = {
terminal = "kitty";
bars = [{
command = "${pkgs.lib.getExe pkgs.waybar}";
position = "bottom";
}];
modifier = "Mod4";
input = { "type:touchpad" = { natural_scroll = "enabled"; }; };
window = {
border = 2;
titlebar = true;
};
};
};