pointers & 3 drag

This commit is contained in:
2025-04-06 20:04:13 -04:00
parent 7705f24e0f
commit 4717886bcc
7 changed files with 86 additions and 21 deletions

View File

@@ -0,0 +1,19 @@
{ config, lib, namespace, ... }:
let
inherit (lib) mkIf;
cfg = config.${namespace}.services.ydotool;
in
{
options.${namespace}.services.ydotool = {
enable = lib.mkEnableOption "ydotool";
};
config = mkIf cfg.enable {
reichard.user.extraGroups = [ "input" ];
programs.ydotool = {
enable = true;
group = "input";
};
};
}