feat: fusuma
parent
3439390ee8
commit
9f8742fc42
|
@ -2,10 +2,11 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
./kile
|
||||
./bemenu.nix
|
||||
./fusuma.nix
|
||||
./init.nix
|
||||
./kanshi.nix
|
||||
./kile
|
||||
./mako.nix
|
||||
./swaybg.nix
|
||||
./swaylock.nix
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.fusuma = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [ coreutils ydotool ];
|
||||
# settings = {
|
||||
# swipe."3" = {
|
||||
# left.command = "do the thing";
|
||||
# };
|
||||
# };
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue