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