mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 17:57:50 +00:00
20 lines
286 B
Nix
20 lines
286 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 = {};
|
|
|
|
}
|