1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2026-01-16 10:11:04 +00:00
ncc/modules/hardware.mod.nix
2025-10-23 00:42:00 +03:00

14 lines
301 B
Nix

{ inputs, ... }: {
nixosModules.hardware-report =
{ lib, ... }:
let
inherit (lib.modules) mkAliasOptionModule;
in
{
imports = [
inputs.os-linux.nixosModules.facter
(mkAliasOptionModule [ "hardware" "report" ] [ "facter" "reportPath" ])
];
};
}