nixpkgs/nixos/modules/hardware/nitrokey.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
533 B
Nix
Raw Normal View History

2017-05-24 22:01:07 +00:00
{ config, lib, pkgs, ... }:
let
cfg = config.hardware.nitrokey;
in
{
options.hardware.nitrokey = {
enable = lib.mkOption {
type = lib.types.bool;
2017-05-24 22:01:07 +00:00
default = false;
description = ''
Enables udev rules for Nitrokey devices. By default grants access
to users in the "nitrokey" group. You may want to install the
nitrokey-app package, depending on your device and needs.
'';
};
};
config = lib.mkIf cfg.enable {
services.udev.packages = [ pkgs.libnitrokey ];
2017-05-24 22:01:07 +00:00
};
}