mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
nixos/neard: expose settings option
This commit is contained in:
parent
6986c2091f
commit
e972a34acb
@ -1,16 +1,69 @@
|
||||
# neard service.
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
###### interface
|
||||
options = {
|
||||
services.neard = {
|
||||
enable = lib.mkEnableOption "neard, an NFC daemon";
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
inherit (lib)
|
||||
mkEnableOption
|
||||
mkIf
|
||||
mkOption
|
||||
types
|
||||
;
|
||||
cfg = config.services.neard;
|
||||
format = pkgs.formats.ini { };
|
||||
configFile = format.generate "neard.conf" cfg.settings;
|
||||
in
|
||||
{
|
||||
options.services.neard = {
|
||||
enable = mkEnableOption "neard, an NFC daemon";
|
||||
|
||||
settings = mkOption {
|
||||
type = types.submodule {
|
||||
freeformType = format.type;
|
||||
options = {
|
||||
General = {
|
||||
ConstantPoll = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = ''
|
||||
Enable constant polling. Constant polling will automatically trigger a new
|
||||
polling loop whenever a tag or a device is no longer in the RF field.
|
||||
'';
|
||||
};
|
||||
|
||||
DefaultPowered = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
description = ''
|
||||
Automatically turn an adapter on when being discovered.
|
||||
'';
|
||||
};
|
||||
|
||||
ResetOnError = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
description = ''
|
||||
Power cycle the adapter when getting a driver error from the kernel.
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
default = {};
|
||||
description = ''
|
||||
Neard INI-style configuration file as a Nix attribute set.
|
||||
|
||||
See the upstream [configuration file](https://github.com/linux-nfc/neard/blob/master/src/main.conf).
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.etc."neard/main.conf".source = configFile;
|
||||
|
||||
###### implementation
|
||||
config = lib.mkIf config.services.neard.enable {
|
||||
environment.systemPackages = [ pkgs.neard ];
|
||||
|
||||
services.dbus.packages = [ pkgs.neard ];
|
||||
|
Loading…
Reference in New Issue
Block a user