mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
15 lines
259 B
Nix
15 lines
259 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
cfg = config.hardware.ledger;
|
||
|
|
||
|
in {
|
||
|
options.hardware.ledger.enable = mkEnableOption "udev rules for Ledger devices";
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
services.udev.packages = [ pkgs.ledger-udev-rules ];
|
||
|
};
|
||
|
}
|