nix-config/modules/home-manager/desktop-river/fusuma.nix

15 lines
249 B
Nix
Raw Normal View History

2023-08-19 18:32:54 +02:00
{ config, pkgs, ... }:
{
services.fusuma = {
enable = true;
extraPackages = with pkgs; [ coreutils ydotool ];
settings = {};
2023-08-19 18:32:54 +02:00
# settings = {
# swipe."3" = {
# left.command = "do the thing";
# };
# };
};
}