mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
25 lines
294 B
Nix
25 lines
294 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
let
|
|
cfg = config.aviallon.hardware;
|
|
desktopCfg = config.aviallon.desktop;
|
|
generalCfg = config.aviallon.general;
|
|
in
|
|
{
|
|
options.aviallon.hardware = { };
|
|
|
|
imports = [
|
|
./amd
|
|
./nvidia
|
|
./intel
|
|
./mesa.nix
|
|
];
|
|
|
|
config = { };
|
|
|
|
}
|