aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/services/hardware/u2f.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/services/hardware/u2f.nix')
-rw-r--r--nixpkgs/nixos/modules/services/hardware/u2f.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/nixpkgs/nixos/modules/services/hardware/u2f.nix b/nixpkgs/nixos/modules/services/hardware/u2f.nix
deleted file mode 100644
index bb4b2f05f89..00000000000
--- a/nixpkgs/nixos/modules/services/hardware/u2f.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-with lib;
-let
- cfg = config.hardware.u2f;
-in {
- options = {
- hardware.u2f = {
- enable = mkOption {
- type = types.bool;
- default = false;
- description = ''
- Enable U2F hardware support.
- '';
- };
- };
- };
-
- config = mkIf cfg.enable {
- services.udev.packages = [ pkgs.libu2f-host ];
- };
-}
-