Files
nixpkgs/nixos/modules/hardware/facter/default.nix
2026-04-21 19:21:31 +02:00

71 lines
1.7 KiB
Nix

{
lib,
config,
...
}:
{
imports = [
./amd-cpu.nix
./boot.nix
./bluetooth.nix
./camera
./debug.nix
./disk.nix
./fingerprint
./firmware.nix
./graphics
./keyboard.nix
./networking
./system.nix
./virtualisation.nix
];
meta.doc = ./facter.md;
meta.maintainers = with lib.maintainers; [ mic92 ];
options.hardware.facter = with lib; {
enable = mkOption {
type = types.bool;
default = config.hardware.facter.report != { };
defaultText = literalExpression ''
config.hardware.facter.report != { }
'';
description = ''
Whether to enable automatic hardware configuration using a report generated by nixos-facter.
See <https://nix-community.github.io/nixos-facter/> for more information.
'';
};
report = mkOption {
type = types.attrsOf types.anything;
default =
if config.hardware.facter.reportPath == null then
{ }
else
builtins.fromJSON (builtins.readFile config.hardware.facter.reportPath);
defaultText = "A JSON import from config.hardware.facter.reportPath (if not null), {} otherwise.";
description = ''
Hardware report data generated by nixos-facter.
See <https://nix-community.github.io/nixos-facter/> for more information.
'';
};
reportPath = mkOption {
type = types.nullOr types.path;
default = null;
description = ''
Path to a hardware report generated by nixos-facter.
To generate a report, run the following as root:
```
nix-shell -p nixos-facter --run nixos-facter > facter.json
```
See <https://nix-community.github.io/nixos-facter/> for more information.
'';
};
};
}