mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
22 lines
395 B
Nix
22 lines
395 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
services.fusuma = {
|
|
enable = true;
|
|
|
|
extraPackages = with pkgs; [ coreutils xdotool ];
|
|
|
|
settings = {
|
|
swipe = {
|
|
"4" = {
|
|
left = {
|
|
command = "xdotool set_desktop --relative -- 1";
|
|
};
|
|
right = {
|
|
command = "xdotool set_desktop --relative -- -1";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|