Files
ndots/modules/home-manager/hypridle/default.nix
T
2026-07-14 16:24:04 -03:00

19 lines
253 B
Nix

{
config,
lib,
pkgs,
...
}:
{
options.custom = {
hypridle.enable = lib.mkEnableOption "enable hypridle - screen lock";
};
config = lib.mkIf config.custom.hypridle.enable {
services.hypridle = {
enable = true;
};
};
}