Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
pcmciaUtils = pkgs.pcmciaUtils.overrideAttrs {
|
|
inherit (config.hardware.pcmcia) firmware config;
|
|
};
|
|
in
|
|
|
|
{
|
|
###### interface
|
|
options = {
|
|
|
|
hardware.pcmcia = {
|
|
enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Enable this option to support PCMCIA card.
|
|
'';
|
|
};
|
|
|
|
firmware = lib.mkOption {
|
|
type = lib.types.listOf lib.types.path;
|
|
default = [ ];
|
|
description = ''
|
|
List of firmware used to handle specific PCMCIA card.
|
|
'';
|
|
};
|
|
|
|
config = lib.mkOption {
|
|
default = null;
|
|
type = lib.types.nullOr lib.types.path;
|
|
description = ''
|
|
Path to the configuration file which maps the memory, IRQs
|
|
and ports used by the PCMCIA hardware.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = lib.mkIf config.hardware.pcmcia.enable {
|
|
|
|
boot.kernelModules = [ "pcmcia" ];
|
|
|
|
services.udev.packages = [ pcmciaUtils ];
|
|
|
|
environment.systemPackages = [ pcmciaUtils ];
|
|
|
|
};
|
|
|
|
}
|