mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 09:47:52 +00:00
16 lines
254 B
Nix
16 lines
254 B
Nix
{ config, pkgs, lib, ... }:
|
|
with lib;
|
|
let
|
|
cfg = config.aviallon.hardware;
|
|
desktopCfg = config.aviallon.desktop;
|
|
in
|
|
{
|
|
options.aviallon.hardware = { };
|
|
|
|
imports = [
|
|
./hardware/amd.nix
|
|
./hardware/nvidia.nix
|
|
./hardware/intel.nix
|
|
];
|
|
|
|
}
|