mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-23 05:09:32 -08:00
23 lines
383 B
Nix
23 lines
383 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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|