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

15 lines
249 B
Nix

{ config, pkgs, ... }:
{
services.fusuma = {
enable = true;
extraPackages = with pkgs; [ coreutils ydotool ];
settings = {};
# settings = {
# swipe."3" = {
# left.command = "do the thing";
# };
# };
};
}