nixos-config/modules/home/sway/default.nix

22 lines
469 B
Nix
Raw Normal View History

2025-10-21 12:12:08 +02:00
{ pkgs, username, ... }:
{
home.packages = with pkgs; [
swayfx
autotiling
2025-10-21 12:12:08 +02:00
libinput-gestures
wmctrl
];
#home.file = {
# "/home/${username}/.config/libinput-gestures/sway.conf" = {
# executable = false;
# text = "
# # Cycle right through sway workspaces
# gesture: swipe right 3 swaymsg focus right
# # Cycle left through sway workspaces
# gesture: swipe left 3 swaymsg focus left
# ";
# };
#};
}