mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
21 lines
469 B
Nix
21 lines
469 B
Nix
{ pkgs, username, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
swayfx
|
|
autotiling
|
|
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
|
|
# ";
|
|
# };
|
|
#};
|
|
}
|