mirror of
https://github.com/blahai/nyx.git
synced 2025-01-19 11:30:20 +00:00
20 lines
316 B
Nix
20 lines
316 B
Nix
{lib, ...}: let
|
|
inherit (lib) mkOption types;
|
|
in {
|
|
imports = [
|
|
./amd.nix
|
|
./novideo.nix
|
|
];
|
|
|
|
options.olympus.device.gpu = mkOption {
|
|
type = types.nullOr (
|
|
types.enum [
|
|
"amd"
|
|
"nvidia"
|
|
"hybrid-nv"
|
|
]
|
|
);
|
|
default = null;
|
|
description = "GPU brand";
|
|
};
|
|
}
|