1
1
Fork 0
nixos/options/custom/programs/ydotool.nix
Myned 09efda36b2
programs: add ydotool
Signed-off-by: Myned <dev@bjork.tech>
2025-02-10 18:10:57 -06:00

19 lines
365 B
Nix

{
config,
lib,
...
}:
with lib; let
cfg = config.custom.programs.ydotool;
in {
options.custom.programs.ydotool = {
enable = mkOption {default = false;};
};
config = mkIf cfg.enable {
custom.settings.users.${config.custom.username}.groups = ["ydotool"];
# https://github.com/ReimuNotMoe/ydotool
programs.ydotool.enable = true;
};
}