6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
pcmciaUtils = pkgs.pcmciaUtils.passthru.function {
|
|
inherit (config.hardware.pcmcia) firmware config;
|
|
};
|
|
|
|
in
|
|
|
|
|
|
{
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
hardware.pcmcia = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Enable this option to support PCMCIA card.
|
|
'';
|
|
};
|
|
|
|
firmware = mkOption {
|
|
type = types.listOf types.path;
|
|
default = [];
|
|
description = ''
|
|
List of firmware used to handle specific PCMCIA card.
|
|
'';
|
|
};
|
|
|
|
config = mkOption {
|
|
default = null;
|
|
type = types.nullOr types.path;
|
|
description = ''
|
|
Path to the configuration file which maps the memory, IRQs
|
|
and ports used by the PCMCIA hardware.
|
|
'';
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf config.hardware.pcmcia.enable {
|
|
|
|
boot.kernelModules = [ "pcmcia" ];
|
|
|
|
services.udev.packages = [ pcmciaUtils ];
|
|
|
|
environment.systemPackages = [ pcmciaUtils ];
|
|
|
|
};
|
|
|
|
}
|