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 = [
./kile
./bemenu.nix
./fusuma.nix
./init.nix
./kanshi.nix
./kile
./mako.nix
./swaybg.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";
# };
# };
};
}

View File

@ -1,5 +1,5 @@
{ pkgs ? import <nixpkgs> {}}: rec {
offline-backups = pkgs.callPackage ./offline-backups {};
rss-sync = pkgs.callPackage ./rss-sync {};
dav-sync = pkgs.callPackage ./dav-sync {};
{ pkgs ? import <nixpkgs> { } }: rec {
offline-backups = pkgs.callPackage ./offline-backups { };
rss-sync = pkgs.callPackage ./rss-sync { };
dav-sync = pkgs.callPackage ./dav-sync { };
}