feat: fusuma

main
Ricard Illa 2023-08-19 18:32:54 +02:00
parent 3439390ee8
commit 9f8742fc42
Signed by: rilla
GPG Key ID: 525307BD467E4205
3 changed files with 19 additions and 5 deletions

View File

@ -2,10 +2,11 @@
{ {
imports = [ imports = [
./kile
./bemenu.nix ./bemenu.nix
./fusuma.nix
./init.nix ./init.nix
./kanshi.nix ./kanshi.nix
./kile
./mako.nix ./mako.nix
./swaybg.nix ./swaybg.nix
./swaylock.nix ./swaylock.nix

View File

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