grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / hardware / nitrokey.nix
blob08d6b16790f7008b3b4338277730ddad9441fe93
1 { config, lib, pkgs, ... }:
2 let
4   cfg = config.hardware.nitrokey;
6 in
9   options.hardware.nitrokey = {
10     enable = lib.mkOption {
11       type = lib.types.bool;
12       default = false;
13       description = ''
14         Enables udev rules for Nitrokey devices. By default grants access
15         to users in the "nitrokey" group. You may want to install the
16         nitrokey-app package, depending on your device and needs.
17       '';
18     };
19   };
21   config = lib.mkIf cfg.enable {
22     services.udev.packages = [ pkgs.libnitrokey ];
23   };