Files
nixos/modules/services/howdy.nix
2025-11-23 09:39:13 +08:00

14 lines
416 B
Nix

inputs:
{
options.nixos.services.howdy = let inherit (inputs.lib) mkOption types; in mkOption
{ type = types.nullOr (types.submodule {}); default = null; };
config = let inherit (inputs.config.nixos.services) howdy; in inputs.lib.mkIf (howdy != null)
{
services =
{
howdy = { enable = true; settings.core.detection_notice = true; };
linux-enable-ir-emitter.enable = true;
};
};
}